@prezly/theme-kit-ui
Version:
UI components for Prezly themes
18 lines • 576 B
JavaScript
import React from "react";
import { SectionTitle } from "./SectionTitle.mjs";
export default {
title: 'Components/SectionTitle',
component: SectionTitle,
parameters: {
design: {
type: 'figma',
url: 'https://www.figma.com/file/46dEAasj1iEtrVQOwmMswB/00--%3E-Themes-Design-System?type=design&node-id=660-16941&mode=dev'
}
}
};
var SectionTitleTemplate = args => /*#__PURE__*/React.createElement(SectionTitle, args);
export var Default = SectionTitleTemplate.bind({});
Default.args = {
title: 'Section Title',
description: 'Section Description'
};