ilink-world/app/components/Button/styles.js

31 lines
667 B
JavaScript
Raw Normal View History

2021-10-26 18:19:13 +00:00
import {StyleSheet} from "react-native";
import {FontWeight, Typography} 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
}
});