import type * as React from 'react'; import { t } from '../i18n'; import { SvgIcon, IconCommonProps } from './SvgIcon'; const defaultProps = { className: '', viewBox: '0 0 16 12', }; export function CheckIcon(props: IconCommonProps): React.ReactElement { const iconCssClasses = `ds-c-icon--check ${props.className || ''}`; return ( ); }