react-line-awesome-svg
Version:
Use line-awesome as react svg component
8 lines (7 loc) • 314 B
TypeScript
import React, { FunctionComponent } from 'react';
declare type SvgProps = JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>;
export interface LineAwesomeProps extends SvgProps {
icon: FunctionComponent;
}
export declare const LineAwesome: FunctionComponent<LineAwesomeProps>;
export default LineAwesome;