mirror of
https://github.com/usememos/memos.git
synced 2025-12-19 07:08:55 +08:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import { Divider } from "@mui/joy";
|
|
import { BaseProps } from "./types";
|
|
|
|
interface Props extends BaseProps {
|
|
symbol: string;
|
|
}
|
|
|
|
const HorizontalRule: React.FC<Props> = () => {
|
|
return <Divider className="!my-3" />;
|
|
};
|
|
|
|
export default HorizontalRule;
|