import React from 'react';
import Button from '../Button';
import ExpansionPanel from '../ExpansionPanel';
import Icon from '../Icon';
import SelectBox from '../SelectBox';
import Typography from '../Typography';
import ColorSelect from '../ColorSelector';
import Sliders from '../Sliders';
import { Group, SliderWrapper } from '../../global/toolStyled';
const shapeOptions = [
{
key: 'circle',
content: ,
value: '',
},
{
key: 'rectangle',
content: ,
value: '',
},
{
key: 'line',
content: ,
value: '',
},
{
key: 'arrow',
content: ,
value: '',
},
];
const typeOptions = [
{
key: 'border',
content: ,
value: '',
},
{
key: 'fill',
content: ,
value: '',
},
];
type Props = {
isActive: boolean;
onClick: () => void;
};
const Shape: React.FunctionComponent = ({
isActive,
onClick,
}: Props) => (
Shape
)}
isActive={isActive}
>
Shape
{}} />
Opacity
40%
Width
12pt
);
export default Shape;