Pill
Last updated: 2.0.0 (21/01/2024)
Usage
import { Pill } from "@valence-ui/core";
function MyComponent() {
return (
<Pill>
I'm a pill!
</Pill>
)
}With remove button
import { Pill } from "@valence-ui/core";
function MyComponent() {
return (
<Pill
withRemoveButton
onRemove={() => console.log("Oh no!")}
>
I'm a pill!
</Pill>
)
}Props
Property
Type
Description
Last updated