/**
 * @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;
