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