Tldraw/packages/tldraw/src/components/Panel/Panel.tsx

24 wiersze
460 B
TypeScript

import { styled } from '~styles/stitches.config'
export const Panel = styled('div', {
backgroundColor: '$panel',
display: 'flex',
flexDirection: 'row',
boxShadow: '$panel',
padding: '$2',
variants: {
side: {
center: {
borderTopLeftRadius: '$4',
borderTopRightRadius: '$4',
},
left: {
borderBottomRightRadius: '$3',
},
right: {
borderBottomLeftRadius: '$3',
},
},
},
})