diff --git a/src/woly/atoms/text-area/index.tsx b/src/woly/atoms/text-area/index.tsx index 04247a11..ce10faa3 100644 --- a/src/woly/atoms/text-area/index.tsx +++ b/src/woly/atoms/text-area/index.tsx @@ -1,7 +1,7 @@ import React from 'react'; import styled, { StyledComponent } from 'styled-components'; import { Priority } from 'lib/types'; -import { box } from 'ui/elements'; +import { box } from 'ui/elements/box'; interface TextAreaProps extends React.TextareaHTMLAttributes { className?: string; diff --git a/src/woly/elements/index.ts b/src/woly/elements/index.ts index eb440cb8..858e080c 100644 --- a/src/woly/elements/index.ts +++ b/src/woly/elements/index.ts @@ -1,3 +1,2 @@ export { InputContainer } from './input-container'; export { InputElement } from './input-element'; -export { box, boxVertical } from './box';