mirror of
https://github.com/picocss/pico.git
synced 2025-04-26 03:06:14 -04:00
16 lines
288 B
TypeScript
16 lines
288 B
TypeScript
![]() |
import { createHTMLElement } from "../HTMLElement";
|
||
|
|
||
|
export default {
|
||
|
title: "Sectioning/H2",
|
||
|
tags: ["autodocs"],
|
||
|
args: {
|
||
|
content: "Content",
|
||
|
},
|
||
|
// Render the <html> element
|
||
|
render: (args) => {
|
||
|
return createHTMLElement("h2", args);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const Default = {};
|