26 lines
648 B
TypeScript
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>
|
|
);
|
|
}
|