it/web/components/pricing/icons.tsx
2025-10-26 02:05:16 +02:00

26 lines
648 B
TypeScript

// components/pricing/icons.tsx
import * as React from "react";
export function CheckIcon(props: React.SVGProps<SVGSVGElement>) {
return (
<svg viewBox="0 0 24 24" aria-hidden="true" {...props}>
<path
d="M20 6L9 17l-5-5"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
export function MinusIcon(props: React.SVGProps<SVGSVGElement>) {
return (
<svg viewBox="0 0 24 24" aria-hidden="true" {...props}>
<path d="M5 12h14" stroke="currentColor" strokeWidth={2} strokeLinecap="round" />
</svg>
);
}