File size: 769 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"use client"

import { Stack, chakra } from "@chakra-ui/react"

const Badge = chakra("div", {
  base: {
    px: "4",
    py: "2",
  },
  variants: {
    variant: {
      solid: {},
      subtle: {},
    },
    pressed: {
      true: {},
      false: {},
    },
  },
  compoundVariants: [
    {
      variant: "solid",
      pressed: true,
      css: { bg: "gray.700", color: "white" },
    },
    { variant: "subtle", pressed: true, css: { bg: "gray.300" } },
  ],
  defaultVariants: {
    variant: "subtle",
  },
})

export const WithCompoundBoolean = () => {
  return (
    <Stack>
      <Badge variant="solid" colorPalette="gray">
        Hello
      </Badge>
      <Badge variant="solid" colorPalette="gray" pressed>
        Hello
      </Badge>
    </Stack>
  )
}