native-base
Version:
Essential cross-platform UI components for React Native
28 lines (27 loc) • 400 B
JavaScript
const baseStyle = () => {
return {
py: 1,
px: 2,
shadow: 6,
rounded: 'sm',
_text: {
fontSize: 'sm'
},
_light: {
bg: "muted.800",
_text: {
color: "text.50"
}
},
_dark: {
bg: "muted.50",
_text: {
color: "text.900"
}
}
};
};
export const Tooltip = {
baseStyle
};
//# sourceMappingURL=tooltip.js.map