import { TEXT_POSITION } from '../enum'; import { Lucide } from './lucide.interface'; export interface Button { description?: string; icon?: Lucide; color?: string; style?: string; class?: string; hide?: boolean; disable?: boolean; textPosition?: TEXT_POSITION; }