feat: account page content
This commit is contained in:
19
frontend/components/PublicityChip.tsx
Normal file
19
frontend/components/PublicityChip.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Chip } from '@nextui-org/react';
|
||||
|
||||
type Props = {
|
||||
isPublic: boolean;
|
||||
publicText: string;
|
||||
privateText: string;
|
||||
};
|
||||
|
||||
export default function PublicityChip({ isPublic, publicText, privateText }: Props) {
|
||||
return isPublic ? (
|
||||
<Chip size="sm" variant="bordered">
|
||||
{publicText}
|
||||
</Chip>
|
||||
) : (
|
||||
<Chip size="sm" variant="bordered">
|
||||
{privateText}
|
||||
</Chip>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user