From 40dfa5bafffbedc1b9f3c7fdcf67908bbbd0b0fc Mon Sep 17 00:00:00 2001 From: rchubarkin Date: Fri, 25 Jun 2021 17:49:30 +0300 Subject: [PATCH] fix: dont export box in index (#159) --- src/woly/atoms/text-area/index.tsx | 2 +- src/woly/elements/index.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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';