import React from 'react'; import { css } from '@emotion/css'; import { Heading, Paragraph } from '@knkui/typography'; type HeroProps = { title: string description?: string image?: React.ReactNode } const Hero: React.FC = ({ image, description, title }) => { return (
{title} {!!description && ( {description} )}
{!!image && (
{image}
)}
) } export default Hero