import * as React from 'react' import * as SynthReact from '@beatgig/synth-react' import { IconProps } from '../Icon' interface ArrowRightIconProps extends IconProps {} type ArrowRightIconComponentProps = React.SVGAttributes & React.RefAttributes & { as?: keyof JSX.IntrinsicElements | React.ComponentType forwardedAs?: keyof JSX.IntrinsicElements | React.ComponentType } & ArrowRightIconProps type ArrowRightIconComponent = SynthReact.SynthComponent< ArrowRightIconComponentProps, SVGElement > /** * @since 1.0.0 */ declare const ArrowRightIcon: ArrowRightIconComponent export { ArrowRightIconComponent, ArrowRightIconComponentProps, ArrowRightIconProps, } export default ArrowRightIcon