mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
18 lines
391 B
TypeScript
18 lines
391 B
TypeScript
import React, { FunctionComponent, ReactElement } from "react";
|
|
|
|
export interface ComponentProps {
|
|
className?: string | undefined;
|
|
}
|
|
|
|
const HorizontalRule: FunctionComponent<ComponentProps> = (
|
|
props: ComponentProps,
|
|
): ReactElement => {
|
|
return (
|
|
<div
|
|
className={`border-b border-gray-700/10 mb-8 mt-8 ${props.className}`}
|
|
></div>
|
|
);
|
|
};
|
|
|
|
export default HorizontalRule;
|