import {forwardRef} from 'react'; import styled from '@emotion/styled'; import type {SVGIconProps} from './svgIcon'; interface Props extends SVGIconProps { side?: 'left' | 'right'; } const IconParenthesis = forwardRef( ({side = 'left', ...props}, ref) => { return ( ); } ); const StyledIcon = styled('svg')` &[data-paren-side='right'] { transform: rotate(180deg); } `; IconParenthesis.displayName = 'IconParenthesis'; export {IconParenthesis};