Replies: 1 comment
-
Hi @Andyy58, thanks for the suggestion, it makes sense to be able to define multiple glare positions! I think the best approach, not causing breaking change to current library API, would be to mark current prop type GlarePosition = ReadonlyArray<'top' | 'right' | 'bottom' | 'left'> | 'all';
const multipleGlarePosition: GlarePosition = ['top', 'right'];
const allGlarePosition: GlarePosition = 'all'; // 360° glare |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm looking for a way to set the glarePosition to left and right at the same time, but not top or bottom, would anyone know anything that might work?
Beta Was this translation helpful? Give feedback.
All reactions