@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
23 lines • 727 B
TypeScript
export function getIconByName(iconName: any): any;
export default Icon;
declare function Icon({ icon, height, width, className, stroke, fill }: {
icon: any;
height: any;
width: any;
className: any;
stroke: any;
fill: any;
}): React.JSX.Element;
declare namespace Icon {
namespace propTypes {
let icon: PropTypes.Validator<string>;
let height: PropTypes.Requireable<string>;
let width: PropTypes.Requireable<string>;
let className: PropTypes.Requireable<string>;
let stroke: PropTypes.Requireable<string>;
let fill: PropTypes.Requireable<string>;
}
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=Icon.d.ts.map