blowater/app/UI/icons/check-icon.tsx
2024-01-02 01:28:10 +08:00

33 lines
972 B
TypeScript

/** @jsx h */
import { h } from "https://esm.sh/preact@10.17.1";
export function CheckIcon(props: {
class?: string | h.JSX.SignalLike<string | undefined> | undefined;
style?:
| string
| h.JSX.CSSProperties
| h.JSX.SignalLike<string | h.JSX.CSSProperties>
| undefined;
}) {
return (
<svg
class={props.class}
style={props.style}
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g>
<g id="SVGRepo_iconCarrier">
<path
d="M4 12.6111L8.92308 17.5L20 6.5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
</path>
</g>
</svg>
);
}