diff --git a/lib/src/temp/IconGalleryTheme.dart b/lib/src/temp/IconGalleryTheme.dart new file mode 100644 index 0000000..f1ee554 --- /dev/null +++ b/lib/src/temp/IconGalleryTheme.dart @@ -0,0 +1,11 @@ +import 'package:flutter/material.dart'; + +class IconGalleryTheme { + final Color? color; + final BoxBorder? border; + final BorderRadiusGeometry? borderRadius; + final List? boxShadow; + + IconGalleryTheme( + {this.color, this.border, this.borderRadius, this.boxShadow}); +}