meal_planner/src/containers/Contact/components/ContactFormSubmitButton.tsx
2021-09-25 15:40:11 +02:00

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>
);