From a67d5eae121f8b7e370d94787847ab12693256e4 Mon Sep 17 00:00:00 2001 From: P2Wdisabled Date: Fri, 15 May 2026 18:42:55 +0200 Subject: [PATCH] feat: enforce required size prop and remove orientation prop from profile icon --- src/components/Icons/profile/profile.astro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/Icons/profile/profile.astro b/src/components/Icons/profile/profile.astro index d24a111..982e502 100644 --- a/src/components/Icons/profile/profile.astro +++ b/src/components/Icons/profile/profile.astro @@ -4,8 +4,7 @@ import profile24 from './svgs/profile-24.svg?raw'; import profile32 from './svgs/profile-32.svg?raw'; export interface Props { - size?: 16 | 24 | 32; - orientation?: 'up' | 'down' | 'left' | 'right'; + size: 16 | 24 | 32; label?: string; class?: string; }