import * as React from 'react'; import { Icon } from '$components/panels/Icon'; type Props = { onClick: () => void, } export const GuestButton = ({ onClick }: Props) => (
);