16 lines
300 B
Plaintext
16 lines
300 B
Plaintext
|
|
<Chip
|
||
|
|
variant="outlined"
|
||
|
|
color="danger"
|
||
|
|
onClick={() => alert('You clicked the chip!')}
|
||
|
|
endDecorator={
|
||
|
|
<ChipDelete
|
||
|
|
color="danger"
|
||
|
|
variant="plain"
|
||
|
|
onClick={() => alert('You clicked the delete button!')}
|
||
|
|
>
|
||
|
|
<DeleteForever />
|
||
|
|
</ChipDelete>
|
||
|
|
}
|
||
|
|
>
|
||
|
|
Clear
|
||
|
|
</Chip>
|