import { Immutable } from "helpers/types"; interface Props { className?: string; children: React.ReactNode; } export function Chip(props: Immutable): JSX.Element { return (
{props.children}
); }