import type { IconProp } from '../icon'; /** Eyebrow chip shown above the FeatureIntro title — names the area or product. */ export type FeatureIntroEyebrow = { label: string; /** Leading icon — string SVG source, `{ src, color?, size? }` object, or custom snippet. */ icon?: IconProp; }; /** A single capability row in the FeatureIntro feature list. */ export type FeatureIntroItem = { /** Leading icon — string SVG source, `{ src, color?, size? }` object, or custom snippet. */ icon?: IconProp; /** Feature name. */ title: string; /** One- to two-sentence explanation of the feature. */ description: string; /** Optional pill rendered after the title (e.g. a localized "Coming soon"). Supply the text yourself — the kit adds no copy of its own. */ badge?: string; };