23 lines
No EOL
324 B
TypeScript
23 lines
No EOL
324 B
TypeScript
const SIZES = {
|
|
small: 12,
|
|
normal: 17,
|
|
large: 20,
|
|
xlarge: 25,
|
|
xxLarge: 30
|
|
}
|
|
|
|
const MARGINS = {
|
|
normal: 10
|
|
}
|
|
|
|
const SHADOWS = {
|
|
light: {
|
|
shadowColor: "#ADB7C3",
|
|
shadowRadius: 20,
|
|
elevation: 10,
|
|
shadowOpacity: 0.6,
|
|
shadowOffset: { width: 1, height: 1 }
|
|
}
|
|
}
|
|
|
|
export {SIZES, SHADOWS, MARGINS} |