import type { DIconProps } from '../Icon';
import { FileExclamationOutlined as AntIcon } from '@ant-design/icons-svg';
import { DIcon } from '../Icon';
export function FileExclamationOutlined(props: Omit<DIconProps, 'dIcon'>) {
return <DIcon {...props} dIcon={AntIcon} />;
}