manifold/web/public/custom-components/curve.tsx
ingawei 3f8988bf27
Inga/colorful answer comments (#1040)
* changing answers in comments to match colors, no longer indenting those responses
2022-10-14 00:07:54 -05:00

21 lines
401 B
TypeScript

export default function Curve({
size = 24,
color = '#B1B1C7',
strokeWidth = 2,
}) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 18 18"
width={size}
height={size}
fill="none"
stroke={color}
strokeWidth={strokeWidth}
transform="rotate(90)"
>
<path d="M5.02,0V5.24c0,4.3,3.49,7.79,7.79,7.79h5.2" />
</svg>
)
}