CxIconButton constructor

const CxIconButton({
  1. Key? key,
  2. IconData? icon,
  3. void click()?,
  4. double? size,
  5. Color? color,
  6. Color? hoverColor,
  7. Color? focusColor,
  8. Color? clickColor,
  9. double? padding,
  10. Color? bgColor,
})

Implementation

const CxIconButton({
  super.key,
  this.icon,
  this.click,
  this.size,
  this.color,
  this.hoverColor,
  this.focusColor,
  this.clickColor,
  this.padding,
  this.bgColor,
});