UNPKG

@tritium-research/react-component

Version:

A react component library based on material-ui, build for tritium internal usecases.

11 lines (10 loc) 310 B
import React from "react"; export interface SvgIconWrapperProps { size?: number; color?: string; children?: React.ReactNode; viewBox?: string; variant?: "small" | "standard" | "large" | "custom"; } declare const SvgIconWrapper: React.FC<SvgIconWrapperProps>; export default SvgIconWrapper;