diff --git a/src/types/UIBlurEffectStyles.ts b/src/types/UIBlurEffectStyles.ts new file mode 100644 index 00000000..e9d23372 --- /dev/null +++ b/src/types/UIBlurEffectStyles.ts @@ -0,0 +1,23 @@ +/** Maps to `UIBlurEffect.Style` */ +export type UIBlurEffectStyles = + | 'systemUltraThinMaterial' + | 'systemThinMaterial' + | 'systemMaterial' + | 'systemThickMaterial' + | 'systemChromeMaterial' + | 'systemUltraThinMaterialLight' + | 'systemThinMaterialLight' + | 'systemMaterialLight' + | 'systemThickMaterialLight' + | 'systemChromeMaterialLight' + | 'systemUltraThinMaterialDark' + | 'systemThinMaterialDark' + | 'systemMaterialDark' + | 'systemThickMaterialDark' + | 'systemChromeMaterialDark' + | 'extraLight' + | 'light' + | 'dark' + | 'extraDark' + | 'regular' + | 'prominent';