mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 08:23:26 +00:00
22 lines
433 B
TypeScript
22 lines
433 B
TypeScript
import { Card, styled, withStaticProperties } from "tamagui";
|
|
|
|
export const MWCardFrame = styled(Card, {
|
|
backgroundColor: "$shade400",
|
|
borderColor: "$shade400",
|
|
|
|
variants: {
|
|
bordered: {
|
|
true: {
|
|
borderWidth: 1,
|
|
borderColor: "$shade500",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
export const MWCard = withStaticProperties(MWCardFrame, {
|
|
Header: Card.Header,
|
|
Footer: Card.Footer,
|
|
Background: Card.Background,
|
|
});
|