material-ui-cordova
Version:
React components that implement Google's Material Design.
19 lines (14 loc) • 353 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface SvgIconProps extends StandardProps<
React.SVGProps<SVGSVGElement>,
SvgIconClassKey
> {
titleAccess?: string;
viewBox?: string;
}
export type SvgIconClassKey =
| 'root'
;
declare const SvgIcon: React.ComponentType<SvgIconProps>;
export default SvgIcon;