tldraw/components/style-panel/color-content.tsx

28 lines
817 B
TypeScript
Raw Normal View History

import { IconButton } from 'components/shared'
2021-06-21 21:35:28 +00:00
import { strokes } from 'state/shape-styles'
import { ColorStyle } from 'types'
import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
import { Square } from 'react-feather'
2021-06-03 12:06:39 +00:00
import { DropdownContent } from '../shared'
export default function ColorContent({
onChange,
}: {
onChange: (color: ColorStyle) => void
2021-06-21 21:35:28 +00:00
}): JSX.Element {
return (
<DropdownContent sideOffset={8} side="bottom">
{Object.keys(strokes).map((color: ColorStyle) => (
<DropdownMenu.DropdownMenuItem
as={IconButton}
key={color}
title={color}
onSelect={() => onChange(color)}
>
<Square fill={strokes[color]} stroke="none" size="22" />
</DropdownMenu.DropdownMenuItem>
))}
</DropdownContent>
)
}