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