ArcaneSvg constructor

const ArcaneSvg({
  1. String viewBox = '0 0 24 24',
  2. String? width,
  3. String? height,
  4. SvgSize? size,
  5. String fill = 'currentColor',
  6. String? stroke,
  7. String? strokeWidth,
  8. Map<String, String>? attributes,
  9. required List<Component> children,
  10. String? className,
  11. Key? key,
})

Implementation

const ArcaneSvg({
  this.viewBox = '0 0 24 24',
  this.width,
  this.height,
  this.size,
  this.fill = 'currentColor',
  this.stroke,
  this.strokeWidth,
  this.attributes,
  required this.children,
  this.className,
  super.key,
});