import type * as React from 'react'; import { SvgIcon, IconCommonProps } from './SvgIcon'; const defaultProps = { className: '', viewBox: '2 0 40 32', }; export function QuotationMarkIcon(props: IconCommonProps): React.ReactElement { const iconCssClasses = `ds-c-icon--left-quote ${props.className || ''}`; return ( // We do not pass in a title for this icon because it is purely decorative. ); }