import { PropsWithChildren, SVGProps } from 'react'; import { SfIconSize } from '@storefront-ui/shared'; import { PropsWithStyle } from '../../index.ts'; export interface SfIconBaseProps extends SVGProps, PropsWithStyle, PropsWithChildren { size?: `${SfIconSize}`; } export { SfIconSize };