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