From 2dcc9dabe2f4f6736fe5fa6ede2f829fc93126d5 Mon Sep 17 00:00:00 2001 From: Jimmy Somsanith Date: Sat, 14 May 2022 21:31:20 +0200 Subject: [PATCH] fix options icons --- addons/a11y/src/components/VisionSimulator.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/addons/a11y/src/components/VisionSimulator.tsx b/addons/a11y/src/components/VisionSimulator.tsx index edae35e978e..050c9392eca 100644 --- a/addons/a11y/src/components/VisionSimulator.tsx +++ b/addons/a11y/src/components/VisionSimulator.tsx @@ -26,17 +26,17 @@ export const baseList = [ type Filter = Option | null; -const getFilter = (filter: Filter) => { - if (!filter) { +const getFilter = (filterName: string) => { + if (!filterName) { return 'none'; } - if (filter.name === 'blurred vision') { + if (filterName === 'blurred vision') { return 'blur(2px)'; } - if (filter.name === 'grayscale') { + if (filterName === 'grayscale') { return 'grayscale(100%)'; } - return `url('#${filter}')`; + return `url('#${filterName}')`; }; const Hidden = styled.div(() => ({ @@ -47,7 +47,7 @@ const Hidden = styled.div(() => ({ }, })); -const ColorIcon = styled.span<{ filter: Filter }>( +const ColorIcon = styled.span<{ filter: string }>( { background: 'linear-gradient(to right, #F44336, #FF9800, #FFEB3B, #8BC34A, #2196F3, #9C27B0)', borderRadius: '1rem', @@ -112,7 +112,7 @@ const getColorList = (active: Filter, set: (i: Filter) => void): Link[] => [ onClick: () => { set(i); }, - right: , + right: , active: active === i, }; }), @@ -126,7 +126,7 @@ export const VisionSimulator = () => {