import * as React from "react"; export interface IconProps extends React.HTMLAttributes>{ left?: boolean; center?: boolean; right?: boolean; tiny?: boolean; small?: boolean; medium?: boolean; large?: boolean; children?: string; className?: string; } /** * React Materialize: Icon */ declare const Icon: React.FC; export default Icon;