@dndbuilder.com/react
Version:
Drag and drop builder for React
24 lines (23 loc) • 809 B
TypeScript
import { SettingsType } from '../../types';
import { FC } from 'react';
export type IconControlProps = {
label?: string;
type: SettingsType;
fieldName: string;
mode?: string;
responsive?: boolean;
className?: string;
};
export declare const IconControl: FC<IconControlProps>;
export type IconSetViewerProps = {
iconCollections: {
name: string;
value: string;
}[];
selectedCollection: string;
setSelectedCollection: (value: string) => void;
selectedIcon?: string;
setSelectedIcon: (key: string) => void;
};
export declare function IconSetViewer({ iconCollections, selectedCollection, setSelectedCollection, selectedIcon, setSelectedIcon, }: IconSetViewerProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=icon.control.d.ts.map