import * as React from 'react' import colors from 'src/styles/colors' import Svg, { Path } from 'svgs' interface Props { height: number color: string } function ForwardChevron({ color, height }: Props) { return ( ) } ForwardChevron.defaultProps = { height: 16, color: colors.contentPrimary, } export default ForwardChevron