mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
interface Props {
|
|
className?: string;
|
|
}
|
|
|
|
const Divider = ({ className }: Props) => {
|
|
return <hr className={`${className} block my-1 border-gray-200 dark:border-gray-600`} />;
|
|
};
|
|
|
|
export default Divider;
|