forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1import {h} from 'preact'
2
3export const Reply = ({
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="M1.3335 4.23242C1.3335 3.12785 2.22893 2.23242 3.3335 2.23242H12.6668C13.7714 2.23242 14.6668 3.12785 14.6668 4.23242V10.8991C14.6668 12.0037 13.7714 12.8991 12.6668 12.8991H8.18482L5.00983 14.8041C4.80387 14.9277 4.54737 14.9309 4.33836 14.8126C4.12936 14.6942 4.00016 14.4726 4.00016 14.2324V12.8991H3.3335C2.22893 12.8991 1.3335 12.0037 1.3335 10.8991V4.23242ZM3.3335 3.56576C2.96531 3.56576 2.66683 3.86423 2.66683 4.23242V10.8991C2.66683 11.2673 2.96531 11.5658 3.3335 11.5658H4.66683C5.03502 11.5658 5.3335 11.8642 5.3335 12.2324V13.055L7.65717 11.6608C7.76078 11.5986 7.87933 11.5658 8.00016 11.5658H12.6668C13.035 11.5658 13.3335 11.2673 13.3335 10.8991V4.23242C13.3335 3.86423 13.035 3.56576 12.6668 3.56576H3.3335Z"
25 fill={fill}
26 />
27 </svg>
28)