File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff line change 1- import { DEFAULT_HEIGHT , DEFAULT_WIDTH } from '../../constants/constants' ;
1+ import { DEFAULT_HEIGHT , DEFAULT_WIDTH , DEFAULT_FILL_NONE } from '../../constants/constants' ;
22import { IconProps } from '../types' ;
33
44export 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 ;
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ export * from './CaretDown';
5555export * from './Chain' ;
5656export * from './Challenges' ;
5757export * from './CheckCircle' ;
58+ export * from './CheckCircleOutline' ;
5859export * from './ChevronLeft' ;
5960export * from './ContentClassIcons' ;
6061export * from './Database' ;
You can’t perform that action at this time.
0 commit comments