import React from 'react'; type Props = { shape: string; width: number; height: number; bdcolor: string; bdwidth: number; transparency: number; fcolor?: string; ftransparency?: number; }; const SvgShapeElement: React.FC = ({ shape, width, height, bdcolor, bdwidth, transparency, fcolor, ftransparency, }: Props) => ( {shape === 'Circle' ? ( ) : null} {shape === 'Square' ? ( ) : null} ); export default SvgShapeElement;