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