import { HEXAGON_CORNER_RADIUS, ShapeProps } from './shapeUtils'; import { SidedShape } from './index'; type HexagonProps = ShapeProps & { cornerRadius?: number; }; const Hexagon: React.FunctionComponent = (props) => ( ); export default Hexagon;