import React from 'react';
import Icon from '../Icon';
import Button from '../Button';
import ExpansionPanel from '../ExpansionPanel';
import Typography from '../Typography';
import SelectBox from '../SelectBox';
import ColorSelect from '../ColorSelector';
import Sliders from '../Sliders';
import { Group, Item, SliderWrapper } from '../../global/toolStyled';
const BrushOptions = [
{
key: 'freehand',
content: ,
value: '',
},
{
key: 'markpen',
content: ,
value: '',
},
];
type Props = {
isActive: boolean;
onClick: () => void;
};
const Freehand: React.FunctionComponent = ({
isActive,
onClick,
}: Props) => (
Freehand
)}
isActive={isActive}
>
Tools
-
-
-
{}} />
Opacity
40%
Width
12pt
);
export default Freehand;