import * as React from 'react'; import { FC, CSSProperties } from 'react'; interface IconProps { color?: string; size?: number; style?: CSSProperties; } const Next: FC = ({ color = 'white', size = 12, style }) => ( ); export default Next;