UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

21 lines (20 loc) 612 B
import styled from 'styled-components'; import { keyboardFocusHighlightingRingCss } from '../../utils/keyboardFocusHighlighting.styles'; export const StyledSharingBar = styled.div` cursor: pointer; display: flex; align-items: center; width: fit-content; &[data-should-show-keyboard-highlighting='true']:focus-visible { ${keyboardFocusHighlightingRingCss} } `; export const StyledSharingBarIconWrapper = styled.div` margin-right: -4px; `; export const StyledSharingBarText = styled.p` color: ${({ theme }) => theme.text}; `; //# sourceMappingURL=SharingBar.styles.js.map