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