File size: 606 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// The barrel file shouldn't be transformed many times if it's imported multiple times.

import { ImageIcon } from 'lucide-react'
import { IceCream } from 'lucide-react'
import { AccessibilityIcon } from 'lucide-react'
import { VariableIcon } from 'lucide-react'
import { Table2Icon } from 'lucide-react'
import { Package2Icon } from 'lucide-react'
import { ZapIcon } from 'lucide-react'

export default function Page() {
  return (
    <>
      <ImageIcon />
      <IceCream />
      <AccessibilityIcon />
      <VariableIcon />
      <Table2Icon />
      <Package2Icon />
      <ZapIcon />
    </>
  )
}