Badge

How to use the Badge component from the Horizon kit.

import { Canvas } from "@react-three/fiber";
import { Fullscreen } from "@react-three/uikit";
import { Container } from '@react-three/uikit'
import { Badge } from '@react-three/uikit-horizon'

function BadgeDemo() {
return (
  <Container alignItems="center">
    <Badge label="Badge" />
  </Container>
)
}



export default function App() {
return (
  <Canvas style={{ position: "absolute", inset: "0", touchAction: "none" }} gl={{ localClippingEnabled: true }}>
    <ambientLight intensity={0.5} />
    <directionalLight intensity={1} position={[-5, 5, 10]} />
    <Fullscreen
      overflow="scroll"
      flexDirection="column"
      alignItems="center"
      padding={32}
    >
      <BadgeDemo />
    </Fullscreen>
  </Canvas>
)
}
import { Badge } from "@react-three/uikit-horizon";