Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1import {h} from 'preact'
2
3export const Like = ({
4 width = 16,
5 height = 17,
6 fill = 'currentColor',
7 className,
8}: {
9 width?: number
10 height?: number
11 fill?: string
12 className?: string
13}) => (
14 <svg
15 className={className}
16 width={width}
17 height={height}
18 viewBox="0 0 16 17"
19 fill="none"
20 xmlns="http://www.w3.org/2000/svg">
21 <path
22 fillRule="evenodd"
23 clipRule="evenodd"
24 d="M11.1561 3.62664C10.3307 3.44261 9.35086 3.65762 8.47486 4.54615C8.34958 4.67323 8.17857 4.74478 8.00012 4.74478C7.82167 4.74478 7.65066 4.67324 7.52538 4.54616C6.64938 3.65762 5.66955 3.44261 4.84416 3.62664C4.0022 3.81438 3.25812 4.43047 2.89709 5.33069C2.21997 7.01907 2.83524 10.1257 8.00015 13.1315C13.165 10.1257 13.7803 7.01906 13.1032 5.33069C12.7421 4.43047 11.998 3.81437 11.1561 3.62664ZM14.3407 4.83438C15.4101 7.50098 14.0114 11.2942 8.32611 14.4808C8.12362 14.5943 7.87668 14.5943 7.6742 14.4808C1.98891 11.2942 0.590133 7.501 1.65956 4.83439C2.1788 3.53968 3.26862 2.61187 4.55399 2.32527C5.68567 2.07294 6.92237 2.32723 8.00012 3.18278C9.07786 2.32723 10.3146 2.07294 11.4462 2.32526C12.7316 2.61186 13.8214 3.53967 14.3407 4.83438Z"
25 fill={fill}
26 />
27 </svg>
28)