15 lines
221 B
TypeScript
15 lines
221 B
TypeScript
import * as React from "react";
|
|
|
|
const style = {
|
|
fontWeight: 500,
|
|
fontSize: "18px",
|
|
};
|
|
|
|
const Heading: React.FC = ({ children }) => (
|
|
<p>
|
|
<span style={style}>{children}</span>
|
|
</p>
|
|
);
|
|
|
|
export default Heading;
|