import React from 'react'; interface LumaIconProps extends React.SVGProps { className?: string; size?: number; color?: string; } /** * Luma brand icon * Features a 4-pointed star shape representing the Luma logo * Default color is 'currentColor' for easy styling */ /** @deprecated Use icons from icons-v2-generated instead. */ export function LumaIcon({ className = '', size = 24, color = 'currentColor', ...props }: LumaIconProps) { return ( ); }