AniX/app/components/Profile/Profile.PrivacyBanner.tsx
Kentai Radiquum d0990eb089
refactor: New Profile Card
feat: add Privacy Banner
feat: add user roles
2024-08-23 19:09:25 +05:00

18 lines
766 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { unixToDate } from "#/api/utils";
export const ProfilePrivacyBanner = (props: { is_privacy: boolean }) => {
return (
<>
{props.is_privacy && (
<div className="flex flex-col justify-between w-full p-4 border border-gray-200 rounded-md md:flex-row bg-gray-50 dark:bg-gray-700 dark:border-gray-600">
<div className="mb-4 md:mb-0 md:me-4">
<p className="flex items-center text-sm font-normal text-gray-500 dark:text-gray-200">
У пользователя установлены настройки приватности. Некоторая
информация для вас может быть недоступна.
</p>
</div>
</div>
)}
</>
);
};