Files
stats/apps/public/components/personal-data-warning.tsx
2024-11-13 21:15:46 +01:00

11 lines
268 B
TypeScript

import { Callout } from 'fumadocs-ui/components/callout';
export function PersonalDataWarning() {
return (
<Callout>
Keep in mind that this is considered personal data. Make sure you have the
users consent before calling this!
</Callout>
);
}