| 1 | import styled, { CSSObject } from '@emotion/styled'; |
| 2 | |
| 3 | interface StyledMenuPrefixProps { |
| 4 | firstLevel?: boolean; |
| 5 | collapsed?: boolean; |
| 6 | transitionDuration?: number; |
| 7 | rtl?: boolean; |
| 8 | rootStyles?: CSSObject; |
| 9 | } |
| 10 | |
| 11 | export const StyledMenuPrefix = styled.span<StyledMenuPrefixProps>` |
| 12 | ${({ rtl }) => (rtl ? 'margin-left: 5px;' : 'margin-right: 5px;')} |
nothing calls this directly
no outgoing calls
no test coverage detected