@prezly/theme-kit-ui
Version:
UI components for Prezly themes
12 lines • 391 B
JavaScript
import React from "react";
export function Title(_ref) {
var {
title,
description
} = _ref;
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("h3", {
className: "text-2xl font-medium text-gray-800"
}, title), /*#__PURE__*/React.createElement("h4", {
className: " text-lg mb-0 leading-5 text-gray-500"
}, description));
}