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