| 1234567891011121314151617181920 |
- import clsx from "clsx";
- export default function CheckSign(props: React.ComponentProps<"svg">) {
- return (
- <svg
- className={clsx("h-4 w-4", props.className)}
- fill="none"
- stroke="#008000"
- strokeWidth={1.5}
- viewBox="0 0 24 24"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
- strokeLinecap="round"
- strokeLinejoin="round"
- />
- </svg>
- );
- }
|