31 lines
709 B
JavaScript
31 lines
709 B
JavaScript
|
import { StyleSheet } from "react-native";
|
||
|
import { Typography, FontWeight } from "../../config/typography";
|
||
|
import { Color } from '../../config/Color';
|
||
|
|
||
|
export default StyleSheet.create({
|
||
|
default: {
|
||
|
height: 56,
|
||
|
borderRadius: 8,
|
||
|
flexDirection: "row",
|
||
|
justifyContent: "center",
|
||
|
alignItems: "center",
|
||
|
paddingHorizontal: 20
|
||
|
},
|
||
|
textDefault: {
|
||
|
...Typography.headline,
|
||
|
color: Color.whiteColor,
|
||
|
fontWeight: FontWeight.semibold
|
||
|
},
|
||
|
outline: {
|
||
|
borderWidth: 1
|
||
|
},
|
||
|
|
||
|
full: {
|
||
|
width: "100%",
|
||
|
alignSelf: "auto"
|
||
|
},
|
||
|
round: {
|
||
|
borderRadius: 28
|
||
|
}
|
||
|
});
|