From d6235453c9b5f297b95edd58864fe26268239318 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 9 Feb 2024 11:52:32 -0600 Subject: Design system tweaks (#2822) * Tweak palette, theme naming, update usages * Update Typography, replace the few usages --- src/components/Divider.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/components/Divider.tsx') diff --git a/src/components/Divider.tsx b/src/components/Divider.tsx index 9b8f79fd0..24e2789e5 100644 --- a/src/components/Divider.tsx +++ b/src/components/Divider.tsx @@ -1,10 +1,18 @@ import React from 'react' import {View} from 'react-native' -import {atoms as a, useTheme} from '#/alf' -import {ViewStyleProp} from '#/alf' +import {atoms as a, useTheme, ViewStyleProp, flatten} from '#/alf' export function Divider({style}: ViewStyleProp) { const t = useTheme() - return + return ( + + ) } -- cgit 1.4.1