// Subscription-page icons — SVG markup copied verbatim from the clinic-pro-tauri
// source (`src/assets/icon/*`) so the ported page matches it pixel-for-pixel.
// The rest of the admin uses Heroicons; these bespoke glyphs exist only here.
import React from 'react';
type IconProps = { size?: number; color?: string };
export function SparkleIcon({ size = 15, color = '#FDD835' }: IconProps) {
return (
);
}
export function PlanCardPerson({ size = 20, color = '#2F2F2F' }: IconProps) {
return (
);
}
export function CloseCircleFilled({ size = 20, color = '#D7D7D7' }: IconProps) {
return (
);
}
export function GiftIcon({ size = 24, color = '#F17732' }: IconProps) {
return (
);
}
export function InfoCircleRedFilled({ size = 20, color = '#D32F2F' }: IconProps) {
return (
);
}
export function SearchHeaderP({ color = '#7E7E7E' }: { color?: string }) {
return (
);
}