import { LucideIconData } from "lucide-angular/icons/types"; export interface LucideIconAttributes { name?: LucideIconData; size?: number | string; color?: string; strokeWidth?: number; class?: string; absoluteStrokeWidth?: boolean; } export interface IFooterButton { code: string; label: string; action: () => void; class?: string; disabled?: boolean; color?: string; loading?: boolean; lucideIcon?: LucideIconAttributes; positionIconText?: string; }