@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
40 lines (37 loc) • 578 B
JavaScript
import { tokens } from '@equinor/eds-tokens';
const {
colors: {
text: {
static_icons__tertiary: {
rgba: enabledColor
}
},
interactive: {
primary__resting: {
rgba: hoverColor
}
}
},
spacings: {
comfortable: {
medium: spacingMedium
}
}
} = tokens;
const breadcrumbs = {
spacings: {
left: spacingMedium,
right: spacingMedium
},
typography: {
color: enabledColor
},
states: {
hover: {
typography: {
color: hoverColor
}
}
}
};
export { breadcrumbs };