import React from 'react' import { Flex, TextArea } from '../' import { actions, HIDE_CONTROL, SPACE, Story, STRING } from '../helpers/storybook' export default { title: 'TextArea', component: TextArea, argTypes: { margin: SPACE, height: STRING, width: STRING, ...actions('onChange', 'onFocus', 'onBlur'), }, } as const export const BasicUsage: Story = (args) =>