Skip to content

Commit 98c99bb

Browse files
Merge branch 'master' into add-CompareArrows-Icon
2 parents c10ab2a + b83cc0e commit 98c99bb

File tree

7 files changed

+38
-11
lines changed

7 files changed

+38
-11
lines changed

src/icons/CheckCircleOutline/CheckCircleOutlineIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const CheckCircleOutlineIcon = ({
1717
{...props}
1818
>
1919
<path
20-
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-5.41 7.29-7.29 1.41 1.41L11 16l-4.29-4.29 1.41-1.41L11 14.17z"
20+
d="M16.59 7.58 10 14.17l-3.59-3.58L5 12l5 5 8-8zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8"
2121
fill={fill}
2222
/>
2323
</svg>

src/icons/Description/DescriptionIcon.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ const DescriptionIcon = ({
1010
<svg
1111
width={width}
1212
height={height}
13-
viewBox="0 0 48 48"
13+
viewBox="0 0 24 24"
1414
fill={fill}
1515
data-testid="description-icon-svg"
1616
xmlns="http://www.w3.org/2000/svg"
1717
{...props}
1818
>
1919
{/* SVG path data from Material UI Description icon will go here */}
20-
<path d="M8 4h28v40H8z" />
20+
<path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zm2 16H8v-2h8zm0-4H8v-2h8zm-3-5V3.5L18.5 9z" fill={fill}></path>
2121
</svg>
2222
);
2323

src/icons/FolderRounded/FolderRoundedIcon.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ export const FolderRoundedIcon = ({
1616
data-testid="folder-rounded-icon-svg"
1717
{...props}
1818
>
19-
<path
20-
d="M10 4c-0.55 0-1 0.45-1 1H4c-1.1 0-2 0.9-2 2v10c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2V8c0-1.1-0.9-2-2-2h-8l-2-2z"
21-
fill={fill}
22-
/>
19+
<path d="M10.59 4.59C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8z" fill={fill} />
2320
</svg>
2421
);
2522
};

src/icons/Publish/PublishIcon.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
22
import { IconProps } from '../types';
33

44
export const PublishIcon = ({
55
width = DEFAULT_WIDTH,
66
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
78
...props
89
}: IconProps): JSX.Element => {
910
return (
1011
<svg
1112
xmlns="http://www.w3.org/2000/svg"
12-
viewBox="0 -960 960 960"
13+
viewBox="0 0 24 24"
1314
width={width}
1415
height={height}
1516
{...props}
1617
>
17-
<path d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm-40-82v-78q-33 0-56.5-23.5T360-320v-40L168-552q-3 18-5.5 36t-2.5 36q0 121 79.5 212T440-162Zm276-102q20-22 36-47.5t26.5-53q10.5-27.5 16-56.5t5.5-59q0-98-54.5-179T600-776v16q0 33-23.5 56.5T520-680h-80v80q0 17-11.5 28.5T400-560h-80v80h240q17 0 28.5 11.5T600-440v120h40q26 0 47 15.5t29 40.5Z" />
18+
<path d="M5 4v2h14V4zm0 10h4v6h6v-6h4l-7-7z" fill={fill} />
1819
</svg>
1920
);
2021
};
2122

22-
export default PublishIcon;
23+
export default PublishIcon;
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const VerifiedIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 24 24"
16+
data-testid="verified-icon-svg"
17+
{...props}
18+
>
19+
<path d="m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69zm-12.91 4.72-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48z" fill={fill} />
20+
</svg>
21+
);
22+
};
23+
24+
export default VerifiedIcon;

src/icons/Verified/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './VerifiedIcon';

src/icons/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export * from './EmojiEvents';
3939
export * from './ExpandAll';
4040
export * from './Favorite';
4141
export * from './Filter';
42+
export * from './FolderRounded';
4243
export * from './Fullscreen';
4344
export * from './Hierarchical';
4445
export * from './Info';
@@ -55,6 +56,7 @@ export * from './CaretDown';
5556
export * from './Chain';
5657
export * from './Challenges';
5758
export * from './CheckCircle';
59+
export * from './CheckCircleOutline';
5860
export * from './ChevronLeft';
5961
export * from './ContentClassIcons';
6062
export * from './Database';
@@ -70,6 +72,7 @@ export * from './EmptyStyle';
7072
export * from './Environment';
7173
export * from './Export';
7274
export * from './ExternalLink';
75+
export * from './ErrorOutline';
7376
export * from './Feedback';
7477
export * from './File';
7578
export * from './GetStarted';
@@ -144,6 +147,7 @@ export * from './Undeploy';
144147
export * from './Undo';
145148
export * from './Upgrade';
146149
export * from './Validate';
150+
export * from './Verified';
147151
export * from './View';
148152
export * from './Visibility';
149153
export * from './Visualizer';

0 commit comments

Comments
 (0)