Files
medusa-store/www/apps/api-reference/components/Section/Divider/index.tsx
Shahed Nasser 4d632e7a5d docs: added tests for components in api-reference project (#14428)
* add tests (WIP)

* added test for h2

* finished adding tests

* fixes

* fixes

* fixes
2026-01-05 10:56:56 +02:00

17 lines
311 B
TypeScript

import React from "react"
import clsx from "clsx"
type SectionDividerProps = {
className?: string
}
const SectionDivider = ({ className }: SectionDividerProps) => {
return (
<hr
className={clsx("absolute bottom-0 z-0 m-0 w-screen left-0", className)}
/>
)
}
export default SectionDivider