mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-10 04:16:50 +00:00
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
type Props = {
|
|
text: string;
|
|
color: string;
|
|
};
|
|
|
|
export const ContactFormSubmitButton = ({ text, color }: Props) => (
|
|
<button className={`waves-effect waves-light btn ${color}`} type="submit" name="submit">
|
|
<i className="material-icons right">send</i> {text}
|
|
</button>
|
|
);
|