@braineet/ui
Version:
Braineet design system
15 lines • 545 B
JavaScript
import styled, { css } from 'styled-components';
import Box from '../box';
export var StyledTabs = styled(Box).withConfig({
displayName: "styles__StyledTabs",
componentId: "sc-p0mgob-0"
})(["padding:", ";border-radius:", ";z-index:", ";", ""], function (props) {
return props.theme.spaces.md;
}, function (props) {
return props.theme.borderRadius.md;
}, function (props) {
return props.theme.zIndex.tabs;
}, function (props) {
return props.sticky && css(["position:sticky;top:", ";"], props.stickyPositionTop);
});
export default {};