import React from "react"; import SkillCardStyle from "./skillCard.styled"; function SkillCard({ title, children, image, bannerImage, url }) { return (
{image && (
)}
{title}
{children}
); } export default SkillCard;