import { ComponentPropsWithoutRef, FC, PropsWithChildren } from 'react'; import { DocumentedPropsWithChildren } from 'bloko/common/helpers/types'; interface IconDynamicProps extends ComponentPropsWithoutRef<'span'> { /** На всю ширину */ stretched?: boolean; } declare const IconDynamic: FC & PropsWithChildren>; export default IconDynamic;