/** * WooCommerce "W" icon — extracted from the WP admin menu icon in * woocommerce/includes/admin/class-wc-admin-menus.php (base64 data URI). * Renders the stylized "W" using currentColor. * * (c) 2026 TWWIM UG. All rights reserved. (www.twwim.com) */ interface WooCommerceIconProps { size?: number; className?: string; } export function WooCommerceIcon({ size = 16, className }: WooCommerceIconProps) { return ( ); }