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