@chayns-components/core
Version:
A set of beautiful React components for developing your own applications with chayns.
28 lines (27 loc) • 517 B
JavaScript
import styled, { css } from 'styled-components';
export const StyledGroupName = styled.span`
color: ${_ref => {
let {
theme
} = _ref;
return theme.text;
}};
font-weight: bold;
padding: 4px 10px;
${_ref2 => {
let {
$groupName
} = _ref2;
return !$groupName && css`
border: 1px ${_ref3 => {
let {
theme
} = _ref3;
return theme['103'];
}} solid;
padding: 0;
`;
}}
cursor: default;
`;
//# sourceMappingURL=GroupName.styles.js.map