import React from 'react'; import { theme } from '@cloudflare/style-const'; import { Div } from '@cloudflare/elements'; type Props = React.ComponentProps & { id: string; children: React.ReactNode; }; export default function Error({ id, children, ...rest }: Props) { return ( ); }