Files
Frontend-Internal-Developer…/frontend/src/app/components/buttons/primarybutton/PrimaryButton.jsx
2026-03-01 12:46:48 +08:00

14 lines
308 B
JavaScript

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;