feat: enforce required size prop and remove orientation prop from profile icon

This commit is contained in:
2026-05-15 18:42:55 +02:00
parent 5323483d65
commit a67d5eae12
+1 -2
View File
@@ -4,8 +4,7 @@ import profile24 from './svgs/profile-24.svg?raw';
import profile32 from './svgs/profile-32.svg?raw'; import profile32 from './svgs/profile-32.svg?raw';
export interface Props { export interface Props {
size?: 16 | 24 | 32; size: 16 | 24 | 32;
orientation?: 'up' | 'down' | 'left' | 'right';
label?: string; label?: string;
class?: string; class?: string;
} }