chore: update memo style (#1581)

This commit is contained in:
boojack
2023-04-21 14:46:41 +08:00
committed by GitHub
parent d0815f586e
commit edf934efbb
4 changed files with 29 additions and 52 deletions

View 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;