import React from 'react'; import clsx from 'clsx'; export type SvgIconProps = React.SVGAttributes & { width?: number; height?: number; className?: string; }; export const SvgIconWrapper = ({ width = 24, height = 24, children, className, ...props }: SvgIconProps & { children: React.ReactNode }) => { return ( {children} ); };