@redocly/theme
Version:
Shared UI components lib
14 lines (12 loc) • 414 B
text/typescript
import styled from 'styled-components';
export const PanelHeaderTitle = styled.span.attrs<{ className?: string }>(({ className }) => ({
'data-component-name': 'Panel/PanelHeaderTitle',
className,
}))`
margin-right: 5px;
font-weight: var(--panel-heading-font-weight-local);
line-height: var(--line-height-base);
overflow: hidden;
text-overflow: ellipsis;
color: var(--panel-heading-text-color);
`;