mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import styled, { css } from 'styled-components';
|
|
import { onSmallScreen } from '../breakpoints';
|
|
|
|
export const Collapse = styled.span<{ preventCollapse?: boolean }>`
|
|
${(props) =>
|
|
!props.preventCollapse &&
|
|
onSmallScreen(css`
|
|
display: none;
|
|
`)}
|
|
`;
|