import React from 'react' import { Box } from '../../Box/Box' import * as styles from './styles.css' import clsx from 'clsx' export type Props = { children: React.ReactNode className?: string } export const Head: React.FC = ({ children, className }) => { return {children} }