mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 18:11:53 +02:00
17 lines
377 B
JavaScript
17 lines
377 B
JavaScript
|
let proxy = new Proxy(
|
||
|
{},
|
||
|
{
|
||
|
get: (obj, property) => {
|
||
|
if (property === '__esModule') {
|
||
|
return {}
|
||
|
}
|
||
|
|
||
|
throw new Error(
|
||
|
`You\'re trying to import \`@heroicons/react/solid/${property}\` from Heroicons v1 but have installed Heroicons v2. Install \`@heroicons/react@v1\` to resolve this error.`
|
||
|
)
|
||
|
},
|
||
|
}
|
||
|
)
|
||
|
|
||
|
module.exports = proxy
|