react-chrono
Version:
A Modern Timeline component for React
14 lines • 468 B
TypeScript
import { default as React } from 'react';
type IconSize = 'sm' | 'md' | 'lg' | 'xl';
type IconContext = 'button' | 'toolbar' | 'control' | 'default';
interface IconWrapperProps {
children: React.ReactNode;
size?: IconSize;
context?: IconContext;
className?: string;
'aria-hidden'?: boolean;
role?: string;
}
declare const _default: React.NamedExoticComponent<IconWrapperProps>;
export default _default;
//# sourceMappingURL=IconWrapper.d.ts.map