sendou.ink/app/components/Alert.tsx
Kalle (Sendou) fa4dab7e94 Add Alert
2021-11-29 13:46:28 +02:00

17 lines
257 B
TypeScript

import { AlertIcon } from "./icons/Alert";
export function Alert({
children,
type,
}: {
children: React.ReactNode;
type: "warning";
}) {
return (
<div data-type={type} className="alert">
<AlertIcon />
{children}
</div>
);
}