mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:03:26 +00:00
29 lines
687 B
TypeScript
29 lines
687 B
TypeScript
import { Button, styled } from "tamagui";
|
|
|
|
export const MWButton = styled(Button, {
|
|
variants: {
|
|
type: {
|
|
primary: {
|
|
backgroundColor: "$buttonPrimaryBackground",
|
|
color: "$buttonPrimaryText",
|
|
fontWeight: "bold",
|
|
},
|
|
secondary: {
|
|
backgroundColor: "$buttonSecondaryBackground",
|
|
color: "$buttonSecondaryText",
|
|
fontWeight: "bold",
|
|
},
|
|
purple: {
|
|
backgroundColor: "$buttonPurpleBackground",
|
|
color: "white",
|
|
fontWeight: "bold",
|
|
},
|
|
cancel: {
|
|
backgroundColor: "$buttonCancelBackground",
|
|
color: "white",
|
|
fontWeight: "bold",
|
|
},
|
|
},
|
|
} as const,
|
|
});
|