import styled from "styled-components"; import { compose } from "styled-system"; import { allSystemStyle, AllSystemProps } from "./system/unions"; export type BaseFormProps = AllSystemProps; const styleProps = compose(...allSystemStyle); export const BaseForm = styled.textarea>( styleProps ); BaseForm.displayName = "BaseForm";