4
0
forked from crowetic/commerce
Files
assets
components
cart
core
icon
ArrowLeft.tsx
Bag.tsx
Check.tsx
Cross.tsx
DoubleChevron.tsx
Github.tsx
Heart.tsx
Minus.tsx
Moon.tsx
Plus.tsx
RightArrow.tsx
Sun.tsx
Trash.tsx
index.ts
product
ui
wishlist
config
lib
pages
public
utils
.gitignore
.prettierignore
README.md
codegen.json
global.d.ts
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
commerce/components/icon/index.ts
Belen Curcio 75f291ec4a Hero Component
2020-10-23 11:47:58 -03:00

14 lines
583 B
TypeScript

export { default as Bag } from './Bag'
export { default as Heart } from './Heart'
export { default as Trash } from './Trash'
export { default as Cross } from './Cross'
export { default as ArrowLeft } from './ArrowLeft'
export { default as Plus } from './Plus'
export { default as Minus } from './Minus'
export { default as Check } from './Check'
export { default as Sun } from './Sun'
export { default as Moon } from './Moon'
export { default as Github } from './Github'
export { default as DoubleChevron } from './DoubleChevron'
export { default as RightArrow } from './RightArrow'