feat: implement setting modal

This commit is contained in:
steven
2023-03-24 15:58:08 +08:00
parent f2c4e33be4
commit 0218a9c065
8 changed files with 164 additions and 22 deletions

View File

@ -1,8 +1,14 @@
import Icon from "./Icon";
const EmptyView = () => {
interface Props {
className?: string;
}
const EmptyView = (props: Props) => {
const { className } = props;
return (
<div className="w-full h-full flex flex-col justify-center items-center">
<div className={`${className || ""} w-full h-full flex flex-col justify-center items-center`}>
<p className=" text-5xl font-medium leading-loose mb-8">SQLChat</p>
<div className="w-full grid grid-cols-3 gap-4">
<div className="w-full flex flex-col justify-start items-center">