UNPKG

simple-react-ui

Version:

a simple react component library written in TypeScript+ React.js

14 lines (13 loc) 279 B
/// <reference types="react" /> import * as React from 'react'; export interface LikeProps { fill: any; stroke: any; } /** * Like Icon */ export declare class Like extends React.Component<LikeProps, any> { render(): JSX.Element; } export default Like;