fannypack-v5
Version:
An accessible, composable, and friendly React UI Kit
34 lines (27 loc) • 754 B
text/typescript
import { css, cssClass } from '../styled';
import { fontWeight, space, theme } from '../utils';
export const Breadcrumb = (styleProps) => cssClass`
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export const BreadcrumbItem = (styleProps) => cssClass`
&&&&&:not(:last-child) {
margin-right: ${space(2)(styleProps)}rem;
}
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export const BreadcrumbSeparator = (styleProps) => cssClass`
display: inline;
margin-left: ${space(2)(styleProps)}rem;
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;
export const BreadcrumbLink = (styleProps) => cssClass`
& {
${theme(styleProps.themeKey, `css.root`)(styleProps)};
}
`;