new component

This commit is contained in:
Laux Dev
2026-03-03 14:07:22 +08:00
parent f0b3c443c0
commit 62c438eed0
9 changed files with 47 additions and 107 deletions

View File

@@ -0,0 +1,8 @@
import React from "react";
import styles from "./styles.module.css";
const ActionButton = ({ icon }) => {
return <button className={styles.iconButton}>{icon}</button>;
};
export default ActionButton;