import React from "react" /** @deprecated Use icons from icons-v2-generated instead. */ export interface MacOSIconProps extends React.SVGProps { color?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function MacOSIcon({ className, color = 'white', ...props }: MacOSIconProps) { return ( ) }