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