import React from 'react'; interface IGradientProps { from: string; to: string; style?: object; className?: string; } const Gradient: React.FC = ({ children, from, to, style, ...rest }) => { return (
{children}
); }; export default Gradient;