From 97a55e843ca8f5175a060ce5740d3e135f71209e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 29 Jan 2022 18:13:49 -0800 Subject: [PATCH] Add empty alt tags for decorative images --- components/Button/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Button/index.tsx b/components/Button/index.tsx index df8164f7..19bee2c1 100644 --- a/components/Button/index.tsx +++ b/components/Button/index.tsx @@ -33,15 +33,15 @@ class Button extends React.Component { let icon if (this.props.type === 'new') { icon = - + } else if (this.props.type === 'menu') { icon = - + } else if (this.props.type === 'link') { icon = - + }