I\'m trying to do something like the following, however it returns null:
import { Button as styledButton } from \'component-library\'
then atte
Try to import this way
import {default as StyledLibrary} from 'component-library';
I suppose you export
export default StyledLibrary