/** * External dependencies */ import clsx from 'clsx'; import type { Property } from 'csstype'; /** * WordPress dependencies */ import { Button, ColorIndicator } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; type Props = { label: string; value?: Property.Color; isNone: boolean; isTransparent: boolean; isMixed?: boolean; onClick: () => void; }; export default function ColorIndicatorButton( { label, value, isNone, isTransparent, isMixed = false, onClick, }: Props ) { return ( ); }