Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Block Explorer UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Block Explorer UI
Commits
f6833e2b
Commit
f6833e2b
authored
3 months ago
by
Lukas
Browse files
Options
Downloads
Patches
Plain Diff
Add tabs component
parent
9b49ac73
No related branches found
No related tags found
1 merge request
!514
Add comment search to account page
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/ui/tabs.tsx
+53
-0
53 additions, 0 deletions
components/ui/tabs.tsx
with
53 additions
and
0 deletions
components/ui/tabs.tsx
0 → 100644
+
53
−
0
View file @
f6833e2b
import
*
as
React
from
"
react
"
;
import
*
as
TabsPrimitive
from
"
@radix-ui/react-tabs
"
;
import
{
cn
}
from
"
@/lib/utils
"
;
const
Tabs
=
TabsPrimitive
.
Root
;
const
TabsList
=
React
.
forwardRef
<
React
.
ElementRef
<
typeof
TabsPrimitive
.
List
>
,
React
.
ComponentPropsWithoutRef
<
typeof
TabsPrimitive
.
List
>
>
(({
className
,
...
props
},
ref
)
=>
(
<
TabsPrimitive
.
List
ref
=
{
ref
}
className
=
{
cn
(
"
inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground
"
,
className
)
}
{
...
props
}
/>
));
TabsList
.
displayName
=
TabsPrimitive
.
List
.
displayName
;
const
TabsTrigger
=
React
.
forwardRef
<
React
.
ElementRef
<
typeof
TabsPrimitive
.
Trigger
>
,
React
.
ComponentPropsWithoutRef
<
typeof
TabsPrimitive
.
Trigger
>
>
(({
className
,
...
props
},
ref
)
=>
(
<
TabsPrimitive
.
Trigger
ref
=
{
ref
}
className
=
{
cn
(
"
inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-buttonBg data-[state=active]:text-foreground data-[state=active]:shadow-sm
"
,
className
)
}
{
...
props
}
/>
));
TabsTrigger
.
displayName
=
TabsPrimitive
.
Trigger
.
displayName
;
const
TabsContent
=
React
.
forwardRef
<
React
.
ElementRef
<
typeof
TabsPrimitive
.
Content
>
,
React
.
ComponentPropsWithoutRef
<
typeof
TabsPrimitive
.
Content
>
>
(({
className
,
...
props
},
ref
)
=>
(
<
TabsPrimitive
.
Content
ref
=
{
ref
}
className
=
{
cn
(
"
mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2
"
,
className
)
}
{
...
props
}
/>
));
TabsContent
.
displayName
=
TabsPrimitive
.
Content
.
displayName
;
export
{
Tabs
,
TabsList
,
TabsTrigger
,
TabsContent
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment