mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:33:26 +00:00
15 lines
244 B
TypeScript
15 lines
244 B
TypeScript
import { Separator, styled } from "tamagui";
|
|
|
|
export const MWSeparator = styled(Separator, {
|
|
variants: {
|
|
type: {
|
|
settings: {
|
|
borderColor: "$shade300",
|
|
},
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
type: "settings",
|
|
},
|
|
});
|