Browse Source
fixed incorrect function name in React.memo for IconDownload icon component (#4891)
main
Joel Mathew Koshy
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
beta/src/components/Icon/IconDownload.tsx
|
|
@ -5,7 +5,7 @@ |
|
|
|
import * as React from 'react'; |
|
|
|
|
|
|
|
export const IconDownload = React.memo<JSX.IntrinsicElements['svg']>( |
|
|
|
function IconArrowSmall({className}) { |
|
|
|
function IconDownload({className}) { |
|
|
|
return ( |
|
|
|
<svg |
|
|
|
width="1em" |
|
|
|