interface IGradientProps { from: string; to: string; } const Gradient: React.FC = ({ children, from, to, ...rest }) => { return (
{children}
); }; export default Gradient;