Files
stats/apps/dashboard/src/components/overview/overview-details-button.tsx
Carl-Gerhard Lindesvärd a1eb4a296f feature(dashboard): refactor overview
fix(lint)
2025-03-20 09:40:01 +01:00

16 lines
354 B
TypeScript

import { ScanEyeIcon } from 'lucide-react';
import { Button, type ButtonProps } from '../ui/button';
type Props = Omit<ButtonProps, 'children'>;
const OverviewDetailsButton = (props: Props) => {
return (
<Button size="icon" variant="ghost" {...props}>
<ScanEyeIcon size={18} />
</Button>
);
};
export default OverviewDetailsButton;