mirror of
https://github.com/picocss/pico.git
synced 2025-04-22 01:26:13 -04:00
16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
![]() |
import { createHTMLElement } from "../HTMLElement";
|
||
|
|
||
|
export default {
|
||
|
title: "InlineTextSemantics/Q",
|
||
|
tags: ["autodocs"],
|
||
|
args: {
|
||
|
content: "Content",
|
||
|
},
|
||
|
// Render the <html> element
|
||
|
render: (args) => {
|
||
|
return createHTMLElement("q", args);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const Default = {};
|