import type * as React from 'react'; import { SvgIcon, IconCommonProps } from './SvgIcon'; const defaultProps = { className: '', title: 'Pdf', viewBox: '0 0 17 22', }; export function PdfIcon(props: IconCommonProps): React.ReactElement { const iconCssClasses = `ds-c-icon--pdf ${props.className || ''}`; return ( ); }