@metadev/daga-react
Version:

14 lines (13 loc) • 450 B
TypeScript
import { Corner, PaletteSectionConfig, Side } from '../../../../daga/src/index.ts';
import { default as React } from 'react';
interface PaletteComponentProps {
palettes: PaletteSectionConfig[];
currentPalette?: PaletteSectionConfig;
currentCategory?: string;
location: Corner;
direction: Side;
width: string;
height?: string;
}
declare const PaletteComponent: React.FC<PaletteComponentProps>;
export { PaletteComponent };