2021-06-02 11:50:34 +00:00
|
|
|
import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
|
2021-06-28 12:13:34 +00:00
|
|
|
import { breakpoints, IconButton } from 'components/shared'
|
2021-06-02 21:17:38 +00:00
|
|
|
import Tooltip from 'components/tooltip'
|
2021-06-21 21:35:28 +00:00
|
|
|
import { strokes } from 'state/shape-styles'
|
2021-06-02 11:50:34 +00:00
|
|
|
import { Square } from 'react-feather'
|
2021-06-28 12:13:34 +00:00
|
|
|
import { useSelector } from 'state'
|
2021-06-02 11:50:34 +00:00
|
|
|
import ColorContent from './color-content'
|
|
|
|
|
2021-06-21 21:35:28 +00:00
|
|
|
export default function QuickColorSelect(): JSX.Element {
|
2021-06-02 11:50:34 +00:00
|
|
|
const color = useSelector((s) => s.values.selectedStyle.color)
|
|
|
|
|
|
|
|
return (
|
2021-06-27 19:19:57 +00:00
|
|
|
<DropdownMenu.Root dir="ltr">
|
2021-06-28 12:13:34 +00:00
|
|
|
<DropdownMenu.Trigger as={IconButton} bp={breakpoints}>
|
2021-06-02 21:17:38 +00:00
|
|
|
<Tooltip label="Color">
|
|
|
|
<Square fill={strokes[color]} stroke={strokes[color]} />
|
|
|
|
</Tooltip>
|
2021-06-02 11:50:34 +00:00
|
|
|
</DropdownMenu.Trigger>
|
2021-06-28 12:13:34 +00:00
|
|
|
<ColorContent />
|
2021-06-02 11:50:34 +00:00
|
|
|
</DropdownMenu.Root>
|
|
|
|
)
|
|
|
|
}
|