import React from 'react'; import '../g.scss'; declare function Icons(props: IIcons): React.JSX.Element; export default Icons; export interface IIcons { alignList?: IFontLine[]; change?: Function; wrapStyle?: React.CSSProperties; } export interface IFontLine { key: string; icon: string; title: string; }