2025-02-04 17:21:03 -05:00
|
|
|
import { CircleSlash2 } from 'lucide-react';
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import Card from '~/components/Card';
|
2024-08-04 11:32:29 -04:00
|
|
|
|
2025-02-04 17:21:03 -05:00
|
|
|
export interface NoticeProps {
|
|
|
|
|
children: React.ReactNode;
|
2024-08-04 11:32:29 -04:00
|
|
|
}
|
|
|
|
|
|
2025-02-04 17:21:03 -05:00
|
|
|
export default function Notice({ children }: NoticeProps) {
|
2024-03-29 21:46:21 -04:00
|
|
|
return (
|
2025-02-04 17:21:03 -05:00
|
|
|
<Card className="flex w-full max-w-full gap-4 font-semibold">
|
|
|
|
|
<CircleSlash2 />
|
2024-03-29 21:46:21 -04:00
|
|
|
{children}
|
2025-02-04 17:21:03 -05:00
|
|
|
</Card>
|
2024-12-31 10:30:14 +05:30
|
|
|
);
|
2024-03-29 21:46:21 -04:00
|
|
|
}
|