Skip to content

Commit

Permalink
⭐️ Impl: Types - Add UIBlurEffectStyles
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Jan 5, 2023
1 parent 26193f7 commit 4df1fe8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/types/UIBlurEffectStyles.ts
Original file line number Diff line number Diff line change
@@ -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';

0 comments on commit 4df1fe8

Please sign in to comment.