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