native-base
Version:
Essential cross-platform UI components for React Native
27 lines (23 loc) • 440 B
text/typescript
const baseStyle = {
width: 'auto',
height: 'auto',
display: 'flex',
flexDirection: 'row',
spacing: '2',
};
const defaultProps = {
direction: 'row',
wrap: 'wrap',
};
export const Breadcrumb = {
baseStyle,
defaultProps,
};
export const BreadcrumbText = {
baseStyle: { ...baseStyle, _current: { fontWeight: 'bold' } },
defaultProps,
};
export const BreadcrumbIcon = {
baseStyle: { ...baseStyle },
defaultProps,
};