import { ArrowRightIcon } from "lucide-react";
import { Button } from "@/registry/default/ui/button";
import {
InputGroup,
InputGroupAddon,
InputGroupInput,
} from "@/registry/default/ui/input-group";
export default function Particle() {
return (
<InputGroup>
<InputGroupInput
aria-label="Subscribe to our newsletter"
disabled
placeholder="Your best email"
type="email"
/>
<InputGroupAddon align="inline-end">
<Button aria-label="Subscribe" disabled size="icon-xs" variant="ghost">
<ArrowRightIcon />
</Button>
</InputGroupAddon>
</InputGroup>
);
}