import type { BaseComponentSizes, TComponentIcon } from "@helpers/types"; export interface FeaturedTextProps { variant: TFeaturedTextVariant; align?: "center" | "left"; size?: TFeaturedTextSize; icon?: TComponentIcon; title: string; content: string; linkedText?: string; linkedUrl?: string; linkAriaLabel?: string; } export type TFeaturedTextSize = BaseComponentSizes; export type TFeaturedTextVariant = "text" | "iconTop" | "iconLeft";