From 79e60fdb36c7e072eac48312c65beedf4b6cf13f Mon Sep 17 00:00:00 2001 From: Aathif Mahir Date: Mon, 14 Oct 2024 22:27:43 +0530 Subject: [PATCH] Removal of Base --- src/MauiIcons.Core/Base/BaseMauiIcon.cs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/MauiIcons.Core/Base/BaseMauiIcon.cs diff --git a/src/MauiIcons.Core/Base/BaseMauiIcon.cs b/src/MauiIcons.Core/Base/BaseMauiIcon.cs deleted file mode 100644 index 8e0fc65..0000000 --- a/src/MauiIcons.Core/Base/BaseMauiIcon.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace MauiIcons.Core.Base; -public abstract class BaseMauiIcon : ContentView -{ - public static readonly BindableProperty IconProperty = BindableProperty.Create(nameof(Icon), typeof(Enum), typeof(BaseMauiIcon), null); - - public Enum? Icon - { - get => (Enum?)GetValue(IconProperty); - set => SetValue(IconProperty, value); - } -}