import React from 'react'; import { css, cx } from '@leafygreen-ui/emotion'; import { HTMLElementProps } from '@leafygreen-ui/lib'; type ProductIconProps = HTMLElementProps<'svg'> & { active?: boolean; size?: number; }; export function CloudManagerIcon({ size = 18, active = false, className, ...rest }: ProductIconProps) { return ( ); } export function AtlasIcon({ size = 18, active, className, ...rest }: ProductIconProps) { return ( ); } export function RealmIcon({ active, ...rest }: ProductIconProps) { return ( ); } export function ChartsIcon({ active, ...rest }: ProductIconProps) { return ( ); } export function CloudIcon(props: HTMLElementProps<'svg'>) { return ( ); } export function SupportIcon(props: HTMLElementProps<'svg'>) { return ( ); } export function UniversityIcon(props: HTMLElementProps<'svg'>) { return ( ); } export function MegaphoneIcon(props: HTMLElementProps<'svg'>) { return ( ); } export function DevHubIcon(props: HTMLElementProps<'svg'>) { return ( ); } export function ForumsIcon(props: HTMLElementProps<'svg'>) { return ( ); } export function DocsIcon(props: HTMLElementProps<'svg'>) { return ( ); }