24 lines
582 B
TypeScript
24 lines
582 B
TypeScript
"use client";
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
import { InputGroup, InputGroupText } from "@/components/ui/input-group";
|
|
|
|
const MultipleAddons = () => {
|
|
return (
|
|
<>
|
|
<InputGroup>
|
|
<InputGroupText>$</InputGroupText>
|
|
<Input type="text" placeholder="100" />
|
|
<InputGroupText>00</InputGroupText>
|
|
</InputGroup>
|
|
<InputGroup>
|
|
<InputGroupText>$</InputGroupText>
|
|
<Input type="text" placeholder="100" />
|
|
<InputGroupText>00</InputGroupText>
|
|
</InputGroup>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MultipleAddons;
|