mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 08:45:06 -04:00
18 lines
339 B
TypeScript
18 lines
339 B
TypeScript
import { createHTMLElement } from "../HTMLElement";
|
|
|
|
export default {
|
|
title: "TableContent/TD",
|
|
tags: ["autodocs"],
|
|
args: {
|
|
content: "Content",
|
|
colspan: 1,
|
|
headers: "",
|
|
rowspan: 1,
|
|
},
|
|
// Render the <html> element
|
|
render: (args) => {
|
|
return createHTMLElement("td", args);
|
|
},
|
|
};
|
|
|
|
export const Default = {};
|