import { Button } from '../components/core/Button'; import { HStack } from '../components/core/Stacks'; interface Props { hide: () => void; } export function Confirm({ hide }: Props) { return ( ); }