Pulse/frontend-modern/src/components/icons/AlertsIcon.tsx
2025-10-11 23:29:47 +00:00

11 lines
263 B
TypeScript

import type { Component } from 'solid-js';
import Bell from 'lucide-solid/icons/bell';
interface AlertsIconProps {
class?: string;
title?: string;
}
export const AlertsIcon: Component<AlertsIconProps> = (props) => (
<Bell {...props} strokeWidth={2} />
);