mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-23 05:27:07 +00:00
13 lines
248 B
JavaScript
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;
|