mirror of
https://github.com/strapi/strapi.git
synced 2025-12-01 09:35:26 +00:00
12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
import styled from 'styled-components';
|
|
import { Flex } from '@buffetjs/core';
|
|
|
|
const CollapseLabel = styled(Flex)`
|
|
padding-right: 10px;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
${({ isCollapsable }) => isCollapsable && 'cursor: pointer;'}
|
|
`;
|
|
|
|
export default CollapseLabel;
|