Skip to content

Commit

Permalink
feat: export dcl components and utils (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
braianj authored Nov 22, 2024
1 parent 6240a47 commit 3c84e1b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/IconChain/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./IconChain"
export type * from "./IconChain.types"
21 changes: 21 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,26 @@ import * as emotionReact from "@emotion/react"
import emotionStyled from "@emotion/styled"
import * as muiIcons from "@mui/icons-material"

// Export Themes
export { light as lightTheme, dark as darkTheme } from "./theme"
export * as dclColors from "./theme/colors"

export * from "@mui/material"
export { emotionReact, emotionStyled, emotionCache, muiIcons }
export * from "./components/Address"
export * as dclAddressUtils from "./components/AddressField/utils"
export * from "./components/AvatarFace"
export * from "./components/Blockie"
export * from "./components/ChainSelector"
export * from "./components/Icon"
export * from "./components/IconBadge"
export * from "./components/IconChain"
export * from "./components/Logo/Logo"
export * from "./components/Mana"
export * from "./components/Media"
export * as dclModal from "./components/Modal"
export * from "./components/Navbar"
export * from "./components/Notifications"
export * from "./components/UserMenu"

export * as dclNetworkUtils from "./lib/network"

0 comments on commit 3c84e1b

Please sign in to comment.