UNPKG

527 BJavaScriptView Raw
1// The only reason this file exists is to appease Vite's optimizeDeps feature which requires a root-level import.
2
3module.exports = new Proxy(
4 {},
5 {
6 get: (_, property) => {
7 if (property === '__esModule') {
8 return {}
9 }
10
11 throw new Error(
12 `Importing from \`@heroicons/react\` directly is not supported. Please import from either \`@heroicons/react/16/solid\`, \`@heroicons/react/20/solid\`, \`@heroicons/react/24/solid\`, or \`@heroicons/react/24/outline\` instead.`
13 )
14 },
15 }
16)