Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Icons
/
GridViewIcon
/
GridViewIcon.d.ts
|
---|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
type?: string;
}
declare class GridViewIcon extends React.PureComponent<Props> {
static defaultProps: {
renderWrapper: (elements: any) => JSX.Element;
};
render(): any;
}
export { GridViewIcon };
export default GridViewIcon;