import React from 'react'; import Icon from '../Icon'; import Button from '../Button'; import Typography from '../Typography'; import ExpansionPanel from '../ExpansionPanel'; import Sliders from '../Sliders'; import ColorSelect from '../ColorSelect'; import SelectBox from '../SelectBox'; import { Wrapper, Group, Item, SliderWrapper } from '../../global/toolStyled'; const fontOptions = [ { key: 'helvetica', content: 'Helvetica', value: '', }, { key: 'arial', content: 'Arial', value: '', }, ]; const sizeOptions = [ { key: 'size_12', content: 12, value: '', }, { key: 'size_14', content: 14, value: '', }, { key: 'size_18', content: 18, value: '', }, { key: 'size_24', content: 24, value: '', }, { key: 'size_36', content: 36, value: '', }, { key: 'size_48', content: 48, value: '', }, { key: 'size_64', content: 64, value: '', }, ]; const TextTools = () => { return ( Text } > Fonts Size Align Opacity 40% ); }; export default TextTools;