UNPKG

rsuite

Version:

A suite of react components

13 lines (8 loc) 303 B
import * as React from 'react'; import { StandardProps } from '../@types/common'; export interface IconStackProps extends StandardProps { /** Sets the icon size */ size?: 'lg' | '2x' | '3x' | '4x' | '5x'; } declare const IconStack: React.ComponentType<IconStackProps>; export default IconStack;