switch to @kremalicious/react-feather

This commit is contained in:
Matthias Kretschmann 2022-05-08 14:06:40 +01:00
parent 2532cad4a4
commit d27efb944f
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 278 additions and 141 deletions

413
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -21,6 +21,7 @@
},
"dependencies": {
"@giphy/js-fetch-api": "^4.1.2",
"@kremalicious/react-feather": "^2.1.0",
"@yaireo/relative-time": "^1.0.2",
"axios": "^0.26.1",
"file-saver": "^2.0.5",
@ -41,7 +42,6 @@
"intersection-observer": "^0.12.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-feather": "^2.0.9",
"react-helmet": "^6.1.0",
"remark": "13.0.0",
"remark-breaks": "2.0.2",

View File

@ -2,7 +2,7 @@ import React from 'react'
import PropTypes from 'prop-types'
// https://featherstyles.com
// import * as Feather from 'react-feather'
// import * as Feather from '@kremalicious/react-feather'
import {
ArrowDownCircle,
Edit,
@ -24,7 +24,7 @@ import {
Star,
Info,
Dribbble
} from 'react-feather'
} from '@kremalicious/react-feather'
import { icon } from './Icon.module.css'
export default function Icon({ name, ...props }) {