1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
| import type { CSSProperties, ReactNode } from 'react'
| import React from 'react'
| import { type VariantProps, cva } from 'class-variance-authority'
| import classNames from '@/utils/classnames'
| import './index.css'
|
| enum BadgeState {
| Warning = 'warning',
| Accent = 'accent',
| Default = '',
| }
|
| const BadgeVariants = cva(
| 'badge',
| {
| variants: {
| size: {
| s: 'badge-s',
| m: 'badge-m',
| l: 'badge-l',
| },
| },
| defaultVariants: {
| size: 'm',
| },
| },
| )
|
| type BadgeProps = {
| size?: 's' | 'm' | 'l'
| iconOnly?: boolean
| uppercase?: boolean
| state?: BadgeState
| styleCss?: CSSProperties
| children?: ReactNode
| } & React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof BadgeVariants>
|
| function getBadgeState(state: BadgeState) {
| switch (state) {
| case BadgeState.Warning:
| return 'badge-warning'
| case BadgeState.Accent:
| return 'badge-accent'
| default:
| return ''
| }
| }
|
| const Badge: React.FC<BadgeProps> = ({
| className,
| size,
| state = BadgeState.Default,
| iconOnly = false,
| uppercase = false,
| styleCss,
| children,
| ...props
| }) => {
| return (
| <div
| className={classNames(
| BadgeVariants({ size, className }),
| getBadgeState(state),
| size === 's'
| ? (iconOnly ? 'p-[3px]' : 'px-[5px] py-[3px]')
| : size === 'l'
| ? (iconOnly ? 'p-1.5' : 'px-2 py-1')
| : (iconOnly ? 'p-1' : 'px-[5px] py-[2px]'),
| uppercase ? 'system-2xs-medium-uppercase' : 'system-2xs-medium',
| )}
| style={styleCss}
| {...props}
| >
| {children}
| </div>
| )
| }
| Badge.displayName = 'Badge'
|
| export default Badge
| export { Badge, BadgeState, BadgeVariants }
|
|