@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 381 B
TypeScript
import * as React from 'react';
import { ReactNode } from 'react';
export type IconProps = {
size?: number | string;
children?: ReactNode;
name?: string;
tabIndex?: number;
style?: React.CSSProperties;
color?: string;
};
declare const _default: ({ children, size, name, tabIndex, color, ...props }: IconProps) => React.JSX.Element;
export default _default;