@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 323 B
TypeScript
import * as React from 'react';
import { AdaptableTheme } from '../../types';
export interface VariantSelectorProps {
theme: AdaptableTheme;
onChange: (variant: AdaptableTheme['Variant'] | null) => void;
disabled?: boolean;
}
export declare const VariantSelector: React.FunctionComponent<VariantSelectorProps>;