diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-23 08:56:50 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-23 08:56:50 +0800 |
commit | b7a5e40c62adfbd8732b3cd98d2c989a6a021c54 (patch) | |
tree | 06f4fdc8f3770260494d18bf2e0be99c9b62111c /packages/instant/src/components/ui/flex.tsx | |
parent | 28f0deb3ebe2f78f98e79d59b8b2a3eacb1c6fef (diff) | |
download | dexon-0x-contracts-b7a5e40c62adfbd8732b3cd98d2c989a6a021c54.tar.gz dexon-0x-contracts-b7a5e40c62adfbd8732b3cd98d2c989a6a021c54.tar.zst dexon-0x-contracts-b7a5e40c62adfbd8732b3cd98d2c989a6a021c54.zip |
chore: run linter
Diffstat (limited to 'packages/instant/src/components/ui/flex.tsx')
-rw-r--r-- | packages/instant/src/components/ui/flex.tsx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/instant/src/components/ui/flex.tsx b/packages/instant/src/components/ui/flex.tsx index f2013f60f..2b430129d 100644 --- a/packages/instant/src/components/ui/flex.tsx +++ b/packages/instant/src/components/ui/flex.tsx @@ -1,4 +1,3 @@ -import * as React from 'react'; import { ColorOption, styled } from '../../style/theme'; import { cssRuleIfExists } from '../../style/util'; @@ -13,10 +12,6 @@ export interface FlexProps { className?: string; } -const PlainFlex: React.StatelessComponent<FlexProps> = ({ children, className }) => ( - <div className={className}>{children}</div> -); - export const Flex = styled<FlexProps, 'div'>('div')` display: flex; flex-direction: ${props => props.direction}; |