Fix for Col className

This commit is contained in:
apanizo 2018-10-02 16:43:49 +02:00
parent 4c0fbccd83
commit c0a6c222dd
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@ const Col = ({
xs, sm, md, lg,
start, center, end, top, middle, bottom, around, between,
xsOffset, smOffset, mdOffset, lgOffset,
className,
...props
}: Props) => {
const colClassNames = cx(
@ -58,7 +59,7 @@ const Col = ({
lgOffset ? capitalize(lgOffset, 'lgOffset') : undefined,
{ overflow },
layout,
props.className,
className,
)
return (