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