-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0dd3e45
commit a6876e0
Showing
40 changed files
with
341 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import * as React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classnames from 'classnames'; | ||
|
||
const SvgBookmarkAi = (props) => { | ||
const { className, color = 'currentColor', size = 16, ...rest } = props; | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 16 16" | ||
xmlSpace="preserve" | ||
enableBackground="new 0 0 16 16" | ||
{...rest} | ||
className={classnames('svg-icon', className)} | ||
width={size} | ||
height={size} | ||
> | ||
<path | ||
d="M382.8 323.4H374c-.2 0-.3.2-.3.3v14.8c0 .2.1.4.2.6.1.2.4.3.6.3.2 0 .4-.1.6-.2l3.3-3.3 3.4 3.3c.1.1.3.2.5.2.5 0 .8-.4.8-.9v-14.8c0-.2-.2-.3-.3-.3zm-.4 15.1c0 .2-.2.2-.2.2l-3.6-3.5c-.1-.1-.3-.1-.5 0l-3.6 3.5c-.1.1-.1.1-.2 0 0 0-.1-.1-.1-.2V324h8.1l.1 14.5z" | ||
transform="translate(-370.376 -323.354)" | ||
fill={color} | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
SvgBookmarkAi.propTypes = { | ||
color: PropTypes.string, | ||
size: PropTypes.number, | ||
className: PropTypes.string, | ||
}; | ||
SvgBookmarkAi.displayName = 'BookmarkAi'; | ||
export default SvgBookmarkAi; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import * as React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classnames from 'classnames'; | ||
|
||
const SvgBookmarkAi2 = (props) => { | ||
const { className, color = 'currentColor', size = 16, ...rest } = props; | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={size} | ||
height={size} | ||
viewBox="0 0 16 16" | ||
{...rest} | ||
className={classnames('svg-icon', className)} | ||
> | ||
<path | ||
data-name="Path 8001" | ||
d="M12.38 0H3.62c-.19 0-.34.15-.34.34v14.78c0 .22.07.44.22.61.14.17.35.26.57.27.2 0 .4-.08.55-.22l3.35-3.3 3.43 3.32a.804.804 0 0 0 1.33-.66V.34c-.01-.18-.16-.34-.34-.34Zm-.33 15.12c0 .19-.16.2-.21.17L8.2 11.76a.332.332 0 0 0-.47 0l-3.55 3.51c-.06.05-.12.06-.16.01a.235.235 0 0 1-.05-.16V.67h8.07v14.45Z" | ||
fill={color} | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
SvgBookmarkAi2.propTypes = { | ||
color: PropTypes.string, | ||
size: PropTypes.number, | ||
className: PropTypes.string, | ||
}; | ||
SvgBookmarkAi2.displayName = 'BookmarkAi2'; | ||
export default SvgBookmarkAi2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import * as React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classnames from 'classnames'; | ||
|
||
const SvgBookmarkFilledNew = (props) => { | ||
const { className, color = 'currentColor', size = 16, ...rest } = props; | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 16 16" | ||
{...rest} | ||
className={classnames('svg-icon', className)} | ||
width={size} | ||
height={size} | ||
> | ||
<path | ||
d="M12.34 0H3.57c-.18 0-.34.15-.34.34v14.79c0 .22.07.44.22.61.14.17.35.26.57.26.2 0 .4-.08.55-.22l3.35-3.3 3.43 3.32c.15.12.33.19.53.2.46-.02.82-.4.8-.86V.34c0-.19-.15-.34-.34-.34Z" | ||
fill="none" | ||
/> | ||
<path | ||
d="M3.57 0h8.77c.19 0 .34.15.34.34v14.79c0 .49-.35.87-.8.87-.19 0-.37-.07-.53-.2l-3.43-3.32-3.35 3.3c-.18.15-.36.22-.55.22-.22 0-.43-.1-.57-.26a.95.95 0 0 1-.22-.61V.34c0-.19.16-.34.34-.34Z" | ||
fill="none" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
SvgBookmarkFilledNew.propTypes = { | ||
color: PropTypes.string, | ||
size: PropTypes.number, | ||
className: PropTypes.string, | ||
}; | ||
SvgBookmarkFilledNew.displayName = 'BookmarkFilledNew'; | ||
export default SvgBookmarkFilledNew; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import * as React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classnames from 'classnames'; | ||
|
||
const SvgBookmarkFilledXd = (props) => { | ||
const { className, color = 'currentColor', size = 16, ...rest } = props; | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={size} | ||
height={size} | ||
viewBox="0 0 16 16" | ||
{...rest} | ||
className={classnames('svg-icon', className)} | ||
> | ||
<defs> | ||
<clipPath> | ||
<path data-name="Rectangle 583" fill={color} d="M0 0h9.444v16H0z" /> | ||
</clipPath> | ||
<clipPath> | ||
<path d="M0 0h16v16H0z" /> | ||
</clipPath> | ||
</defs> | ||
<g data-name="Artboard \u2013 2" clipPath="url(#a)"> | ||
<path fill="#fff" d="M0 0h16v16H0z" /> | ||
<g data-name="Group 349"> | ||
<g data-name="Group 350" clipPath="url(#b)" transform="translate(3)"> | ||
<path | ||
data-name="Path 8002" | ||
d="M9.1 0H.338A.338.338 0 0 0 0 .338v14.788a.921.921 0 0 0 .217.607.759.759 0 0 0 .572.267.855.855 0 0 0 .55-.217l3.347-3.3 3.429 3.322a.8.8 0 0 0 1.328-.662V.341A.338.338 0 0 0 9.108 0Z" | ||
fill={color} | ||
/> | ||
</g> | ||
</g> | ||
</g> | ||
</svg> | ||
); | ||
}; | ||
|
||
SvgBookmarkFilledXd.propTypes = { | ||
color: PropTypes.string, | ||
size: PropTypes.number, | ||
className: PropTypes.string, | ||
}; | ||
SvgBookmarkFilledXd.displayName = 'BookmarkFilledXd'; | ||
export default SvgBookmarkFilledXd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import * as React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classnames from 'classnames'; | ||
|
||
const SvgBookmarkNew = (props) => { | ||
const { className, color = 'currentColor', size = 16, ...rest } = props; | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 16 16" | ||
{...rest} | ||
className={classnames('svg-icon', className)} | ||
width={size} | ||
height={size} | ||
> | ||
<path | ||
d="M12.34 0H3.57c-.18 0-.34.15-.34.34v14.79c0 .22.07.44.22.61.14.17.35.26.57.26.2 0 .4-.08.55-.22l3.35-3.3 3.43 3.32c.15.12.33.19.53.2.46-.02.82-.4.8-.86V.34c0-.19-.15-.34-.34-.34Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M3.89.66v14.47c0 .07.02.13.05.17.02.02.05.04.08.04s.07-.02.11-.05l3.78-3.73 3.86 3.74s.06.03.1.04c.08 0 .14-.09.14-.21V.66H3.89M3.57 0h8.77c.19 0 .34.15.34.34v14.79c0 .49-.35.87-.8.87-.19 0-.37-.07-.53-.2l-3.43-3.32-3.35 3.3c-.18.15-.36.22-.55.22-.22 0-.43-.1-.57-.26a.95.95 0 0 1-.22-.61V.34c0-.19.16-.34.34-.34Z" | ||
fill={color} | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
SvgBookmarkNew.propTypes = { | ||
color: PropTypes.string, | ||
size: PropTypes.number, | ||
className: PropTypes.string, | ||
}; | ||
SvgBookmarkNew.displayName = 'BookmarkNew'; | ||
export default SvgBookmarkNew; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import * as React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classnames from 'classnames'; | ||
|
||
const SvgBookmarkXd = (props) => { | ||
const { className, color = 'currentColor', size = 16, ...rest } = props; | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={size} | ||
height={size} | ||
viewBox="0 0 16 16" | ||
{...rest} | ||
className={classnames('svg-icon', className)} | ||
> | ||
<defs> | ||
<clipPath> | ||
<path data-name="Rectangle 581" fill={color} d="M0 0h9.444v16H0z" /> | ||
</clipPath> | ||
<clipPath> | ||
<path d="M0 0h16v16H0z" /> | ||
</clipPath> | ||
</defs> | ||
<g data-name="Artboard \u2013 1" clipPath="url(#a)"> | ||
<path fill="#fff" d="M0 0h16v16H0z" /> | ||
<g data-name="Group 348" clipPath="url(#b)" transform="translate(3.278)"> | ||
<path | ||
data-name="Path 8001" | ||
d="M9.1 0H.338A.338.338 0 0 0 0 .338v14.788a.925.925 0 0 0 .217.608.761.761 0 0 0 .571.266.846.846 0 0 0 .55-.217l3.348-3.3 3.429 3.322a.8.8 0 0 0 1.328-.662V.342A.338.338 0 0 0 9.108 0Zm-.333 15.125c0 .195-.165.2-.206.172l-3.644-3.531a.335.335 0 0 0-.471 0L.891 15.275c-.064.053-.122.063-.165.013a.247.247 0 0 1-.051-.164V.673h8.093Z" | ||
fill={color} | ||
/> | ||
</g> | ||
</g> | ||
</svg> | ||
); | ||
}; | ||
|
||
SvgBookmarkXd.propTypes = { | ||
color: PropTypes.string, | ||
size: PropTypes.number, | ||
className: PropTypes.string, | ||
}; | ||
SvgBookmarkXd.displayName = 'BookmarkXd'; | ||
export default SvgBookmarkXd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.