import type { BaseComponentSizes, LinkTag, TComponentIcon } from "@helpers/types"; import { ReactNode } from "react"; export interface FeaturedTextProps { variant?: TFeaturedTextVariant; align?: "center" | "left"; size?: TFeaturedTextSize; icon?: TComponentIcon; title: string; content: string; LinkTag?: LinkTag | "a"; linkChildren?: ReactNode; href?: string; } export type TFeaturedTextSize = BaseComponentSizes; export type TFeaturedTextVariant = "text" | "iconTop" | "iconLeft";