diff --git a/src/plugins/GenericPageWithIcon.js b/src/plugins/GenericPageWithIcon.js new file mode 100644 index 0000000..b24a221 --- /dev/null +++ b/src/plugins/GenericPageWithIcon.js @@ -0,0 +1,32 @@ +import React from "react"; +import PropTypes from "prop-types"; +import { Box, Button, Heading, Text } from "grommet"; + +function GenericPageWithIcon(props) { + return ( + + {props.icon} + {props.title} + {props.description} +