mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: update memo style (#1581)
This commit is contained in:
9
web/src/components/kit/Divider.tsx
Normal file
9
web/src/components/kit/Divider.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user