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