Files
native-app/apps/expo/src/components/ui/Separator.tsx
2024-04-02 17:25:24 +02:00

15 lines
244 B
TypeScript

import { Separator, styled } from "tamagui";
export const MWSeparator = styled(Separator, {
variants: {
type: {
settings: {
borderColor: "$shade300",
},
},
},
defaultVariants: {
type: "settings",
},
});