import React from "react"; import { WiredCard as Card } from "wired-elements-react"; import {CardWrapper} from "./styled"; interface IWiredCard { elevation?: number; } const WiredCard: React.FC = ({ children, elevation}) => { var childrenWithType = ({children}) as HTMLCollection & React.ReactNode; return {childrenWithType}; }; export default WiredCard;