mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 10:33:26 +00:00
27 lines
640 B
TypeScript
27 lines
640 B
TypeScript
import { Input, styled } from "tamagui";
|
|
|
|
export const MWInput = styled(Input, {
|
|
fontWeight: "$semibold",
|
|
|
|
variants: {
|
|
type: {
|
|
default: {
|
|
backgroundColor: "$inputBackground",
|
|
color: "$inputText",
|
|
placeholderTextColor: "$placeHolderText",
|
|
borderColor: "$inputBorder",
|
|
outlineStyle: "none",
|
|
},
|
|
search: {
|
|
backgroundColor: "$searchBackground",
|
|
borderColor: "$colorTransparent",
|
|
placeholderTextColor: "$searchPlaceholder",
|
|
outlineStyle: "none",
|
|
focusStyle: {
|
|
borderColor: "$colorTransparent",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|