import { ThemeIcon } from '../icons/theme.js'; type IconSize = 'xsmall' | 'small' | 'medium'; interface IconProps { size?: IconSize; /** * Partial or complete theme to override the component's colour palette. * The sanctioned colours have have been set out by the design system team. * The colours which can be changed are: * * `fill` */ theme?: Partial; isAnnouncedByScreenReader?: boolean; } export type { IconProps, IconSize };