I have the following enum
export enum Sizes{
Small,
Large
}
which is getting used in my <Demo/> component's props interface:
export interface IProps{
Label?: string;
Size: SizeEnum;
}
My question is, when I use this <Demo Size={how do i define size here?} />?