/** * ColorItem * * A block-level element with a color tab on the left */ import { BlockProps } from '../../core/types'; import './ColorItem.scss'; export type ColorItemProps = BlockProps & { color: string; }; export default function ColorItem({ children, className, color, style }: ColorItemProps): import("react/jsx-runtime").JSX.Element;