UNPKG

tenacity-ui

Version:

tenacity ui component library

14 lines (13 loc) 284 B
/** * @name SvgIcon * @author Lester * @date 2021-05-08 14:28 */ import React from 'react'; interface IndexProps { className?: string; name: string; onClick?: React.MouseEventHandler; } declare const SvgIcon: React.FC<IndexProps>; export default SvgIcon;