Skip to content

Commit

Permalink
Fix class to className attribute in Steps component
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcss committed Nov 8, 2024
1 parent 2db806a commit 4a6aff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Steps/Step/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import styles from "./styles.module.scss";
export default function Step({children, title, index, ...props}) {

return <div className={clsx(styles.Step)}>
<div class={clsx(styles.StepHeader, 'd-flex gap-8 align-items-center flex-wrap py-4')}>
<div className={clsx(styles.StepHeader, 'd-flex gap-8 align-items-center flex-wrap py-4')}>
<h4 className="m-0 fs-14 fw-medium lh-base">{title}</h4>
</div>
<div class={`border-start ps-14 ms-20 py-10 markdown`}>
<div className={`border-start ps-14 ms-20 py-10 markdown`}>
{children}
</div>
</div>
Expand Down

0 comments on commit 4a6aff8

Please sign in to comment.