DefinitelyTyped/types/react-icofont/react-icofont-tests.tsx

11 lines
228 B
TypeScript

import * as React from 'react';
import Icofont from "react-icofont";
class Test extends React.Component<any> {
render() {
return (
<Icofont icon="spinner-alt-4" size="3" spin={true}/>
);
}
}