UNPKG

@cainthus/alex-library

Version:

Component React library for Cainthus - Alex Dashboard.

12 lines (11 loc) 335 B
import React from 'react'; import './Icon.scss'; import { Props } from './Icon.types'; declare class Icon extends React.Component<Props> { static defaultProps: { size: "md" | "sm" | "lg"; theme: "primary" | "success" | "error" | "default" | "dark" | "warn"; }; render(): JSX.Element; } export default Icon;