aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui/flex.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-25 04:44:00 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-25 04:44:00 +0800
commit379f7c788385cfc15fea8d0bb0a2a39f0c709b8d (patch)
treed297644647fd2ee025c748d46bc3175fb81192ad /packages/instant/src/components/ui/flex.tsx
parentc7a063ca47c3a5b62fe070ba10055b575c1707de (diff)
downloaddexon-sol-tools-379f7c788385cfc15fea8d0bb0a2a39f0c709b8d.tar.gz
dexon-sol-tools-379f7c788385cfc15fea8d0bb0a2a39f0c709b8d.tar.zst
dexon-sol-tools-379f7c788385cfc15fea8d0bb0a2a39f0c709b8d.zip
chore: use alternate syntax for styled
Diffstat (limited to 'packages/instant/src/components/ui/flex.tsx')
-rw-r--r--packages/instant/src/components/ui/flex.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/instant/src/components/ui/flex.tsx b/packages/instant/src/components/ui/flex.tsx
index d4e14d979..5fa3fc95b 100644
--- a/packages/instant/src/components/ui/flex.tsx
+++ b/packages/instant/src/components/ui/flex.tsx
@@ -12,7 +12,10 @@ export interface FlexProps {
className?: string;
}
-export const Flex = styled<FlexProps, 'div'>('div')`
+export const Flex =
+ styled.div <
+ FlexProps >
+ `
display: flex;
flex-direction: ${props => props.direction};
flex-wrap: ${props => props.flexWrap};