import * as React from 'react'; import { IComponentAs } from '@fluentui/react'; export interface IBadgeProps { /** * Optional className */ className?: string; /** * How to render the badge. */ as?: IComponentAs; children: React.ReactNode; }