You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
1007 B

1 month ago
import React from 'react';
import Svg, { Path } from 'react-native-svg';
const BookmarkIcon = ({size}:{size:number}) => (
<Svg
viewBox="0 0 1024 1024"
width={size}
height={size}
>
<Path
d="M899.992 0.008h-776C55.624 0.008 0 55.632 0 124.016v775.968c0 68.368 55.624 124.008 123.992 124.008h776c68.368 0 124.008-55.64 124.008-124.008V124.016C1024 55.632 968.36 0.008 899.992 0.008z m59.336 617.16H774.408c-98.616 0-157.504-39.312-157.504-105.152 0-57.976 47.176-105.16 105.16-105.16h237.272v210.312z m-59.336 342.144h-776c-32.72 0-59.32-26.616-59.32-59.328V124.016c0-32.72 26.6-59.336 59.32-59.336h776c32.72 0 59.336 26.616 59.336 59.336v218.168H722.056c-93.632 0-169.832 76.192-169.832 169.832 0 78.344 58.192 169.824 222.176 169.824h184.92v218.152c0.008 32.704-26.608 59.32-59.328 59.32z"
fill="#ffffff"
/>
<Path
d="M757.608 557.832a45.816 45.816 0 1 0 0-91.64 45.816 45.816 0 1 0 0 91.64z"
fill="#ffffff"
/>
</Svg>
);
export default BookmarkIcon;