// 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 = 'currentColor' }: IconProps) { return ( ); } export function PlanCardPerson({ size = 20, color = 'currentColor' }: IconProps) { return ( ); } export function CloseCircleFilled({ size = 20, color = 'currentColor' }: IconProps) { return ( ); } export function GiftIcon({ size = 24, color = 'currentColor' }: IconProps) { return ( ); } export function InfoCircleRedFilled({ size = 20, color = 'currentColor' }: IconProps) { return ( ); } export function SearchHeaderP({ color = 'currentColor' }: { color?: string }) { return ( ); }