import React from 'react'; import { IconName } from '../../atoms/Icons'; import { type ComposableProps } from '../../../lib/slot'; export interface BreadcrumbIconProps extends ComposableProps<'span'> { /** * Icon name from FT Design System icon library */ name: IconName; /** * Icon size * @default 16 */ size?: number; } /** * BreadcrumbIcon Component * * A composable component for displaying icons in breadcrumb links. * Typically used within BreadcrumbLink. * * @public * * @example * ```tsx * * * * * * Home * * * * * ``` * * @remarks * - Wraps the HTML `` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Provides consistent icon sizing for breadcrumbs. */ export declare const BreadcrumbIcon: React.ForwardRefExoticComponent>; //# sourceMappingURL=BreadcrumbIcon.d.ts.map