Skip to content

Commit

Permalink
Change how color class is added to kit class
Browse files Browse the repository at this point in the history
  • Loading branch information
ASPhillips8 committed Dec 20, 2024
1 parent c8777e2 commit b086fac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const SectionSeparator = (props: SectionSeparatorProps): React.ReactElement => {
const ariaProps = buildAriaProps(aria)
const dataProps = buildDataProps(data)
const htmlProps = buildHtmlProps(htmlOptions)
const classes = classnames(buildCss('pb_section_separator_kit', variant, orientation, lineStyle === "dashed" ? lineStyle : ""), globalProps(props), color !== "default" ? `color_${color}` : '', className)
const classes = classnames(buildCss('pb_section_separator_kit', variant, orientation, lineStyle === "dashed" ? lineStyle : "", color !== "default" ? `color_${color}` : ''), globalProps(props), className)
const dynamicInlineProps = globalInlineProps(props)

return (
Expand Down

0 comments on commit b086fac

Please sign in to comment.