improved settings design

This commit is contained in:
Jorrin
2024-04-02 17:25:24 +02:00
parent 9dc973dd38
commit 925b28019f
5 changed files with 173 additions and 33 deletions

View File

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