mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
17 lines
378 B
TypeScript
17 lines
378 B
TypeScript
import Icons from "@/components/ui/icons";
|
|
import React from "react";
|
|
import { Button, Label, XStack } from "tamagui";
|
|
|
|
export default function CredentialsSection() {
|
|
return (
|
|
<XStack gap="$3">
|
|
<Label flex={1} h="$3">
|
|
Credentials
|
|
</Label>
|
|
<Button size="$3" icon={<Icons size={16} name="plus" />}>
|
|
Add
|
|
</Button>
|
|
</XStack>
|
|
);
|
|
}
|