You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 19, 2023. It is now read-only.
Right now we are not exporting the interfaces that define the props needed by the components. So for example when using the library and want to import the TooltipIconButtonProps, the user needs to do import { TooltipIconButtonProps } from '@rsksmart/rif-ui/dist/components/molecules/TooltipIconButton'.
Solution
Export types at root level so users can do import { TooltipIconButtonProps } from '@rsksmart/rif-ui
The text was updated successfully, but these errors were encountered:
Problem
Right now we are not exporting the interfaces that define the props needed by the components. So for example when using the library and want to import the
TooltipIconButtonProps
, the user needs to doimport { TooltipIconButtonProps } from '@rsksmart/rif-ui/dist/components/molecules/TooltipIconButton'
.Solution
Export types at root level so users can do
import { TooltipIconButtonProps } from '@rsksmart/rif-ui
The text was updated successfully, but these errors were encountered: