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