Added modals

This commit is contained in:
Laux Dev
2026-03-01 12:46:48 +08:00
parent da64ef2255
commit d86f71ee6a
11 changed files with 993 additions and 27 deletions

View File

@@ -0,0 +1,13 @@
import React from "react";
import styles from "./styles.module.css";
import AddIcon from "../../icons/add";
const PrimaryButton = (props) => {
return (
<button className={styles.button} {...props}>
<AddIcon width={20} height={20} />
Add
</button>
);
};
export default PrimaryButton;