IdsIconButton constructor
const
IdsIconButton({
- Key? key,
- required Widget icon(),
- IdsVariant variant = IdsVariant.ghost,
- IdsSize size = IdsSize.standard,
- bool disabled = false,
- VoidCallback? onPressed,
- required String label,
Implementation
const IdsIconButton({
super.key,
required this.icon,
this.variant = IdsVariant.ghost,
this.size = IdsSize.standard,
this.disabled = false,
this.onPressed,
required this.label,
});