UNPKG

geoiq-frontend-ui-kit

Version:

This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.

17 lines (16 loc) 424 B
import { default as React } from 'react'; export interface SwatchGridItem { value: string; label?: string; icon?: React.ReactNode; thumbnail?: string; } export interface SwatchGridProps { items: SwatchGridItem[]; value?: string; onSelect: (value: string) => void; columns?: number; emptyMessage?: React.ReactNode; className?: string; } //# sourceMappingURL=swatch-grid.types.d.ts.map