import type * as React from 'react'; import { t } from '../i18n'; import { SvgIcon, IconCommonProps } from './SvgIcon'; const defaultProps = { className: '', viewBox: '37 2 135 135', }; export function AlertCircleIcon(props: IconCommonProps): React.ReactElement { const iconCssClasses = `ds-c-icon--alert-circle ${props.className || ''}`; return ( ); }