import React from 'react'; import { CrossIcon } from '~/components/svg'; import { Button } from '~/components/ui'; type ActionButtonProps = { onClick: () => void; }; export default function ActionButton({ onClick }: ActionButtonProps) { return (
); }