docs: redesign footer (#8651)
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
"use client"
|
||||
|
||||
import clsx from "clsx"
|
||||
import React from "react"
|
||||
|
||||
export type DottedSeparatorProps = {
|
||||
wrapperClassName?: string
|
||||
className?: string
|
||||
}
|
||||
|
||||
export const DottedSeparator = ({
|
||||
className,
|
||||
wrapperClassName,
|
||||
}: DottedSeparatorProps) => {
|
||||
return (
|
||||
<div className={clsx("px-docs_0.75 my-docs_0.75", wrapperClassName)}>
|
||||
<span
|
||||
className={clsx(
|
||||
"block w-full h-px relative bg-border-dotted",
|
||||
"bg-[length:4px_1px] bg-repeat-x bg-bottom",
|
||||
className
|
||||
)}
|
||||
></span>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user