BackgroundVariant
为方便起见,将三个变体导出为枚举。你可以导入枚举并像 BackgroundVariant.Lines
一样使用它,也可以直接使用原始字符串值。
¥The three variants are exported as an enum for convenience. You can either import
the enum and use it like BackgroundVariant.Lines
or you can use the raw string
value directly.
export enum BackgroundVariant {
Lines = 'lines',
Dots = 'dots',
Cross = 'cross',
}