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