AuthorizationServerDemos/React/src/pages/components/Heading1.js
2021-01-16 20:41:03 +03:00

13 lines
248 B
JavaScript

import React from "react";
const Heading1 = ({ text, classes = "", styles = {} }) => (
<h1
className={`font-playfair text-black-custom text-6xl mb-12 ${classes}`}
style={{ ...styles }}
>
{text}
</h1>
);
export default Heading1;