11 lines
268 B
TypeScript
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>
|
|
);
|
|
}
|