12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
import React from "react";
|
|
import styles from "./styles.module.css";
|
|
const SecondaryButton = (props) => {
|
|
return (
|
|
<button className={styles.button} {...props}>
|
|
<p>{props.text}</p>
|
|
</button>
|
|
);
|
|
};
|
|
|
|
export default SecondaryButton;
|