import React from 'react' interface DashboardIconProps { className?: string size?: number color?: string } /** @deprecated Use icons from icons-v2-generated instead. */ export function DashboardIcon({ className = '', size = 20, color = 'white' }: DashboardIconProps) { return ( ) }