Icon Button
An interactive element used to trigger actions.
An interactive element used to trigger actions.
import { IconButton, type IconButtonProps } from '@tacos-ui/react';
import { ArrowRightIcon } from 'lucide-react';
export const Demo = (props: IconButtonProps) => {
return (
<IconButton {...props} aria-label="Next Page">
<ArrowRightIcon />
</IconButton>
);
};
Previous
Hover CardNext
Icon