mirror of
https://github.com/picocss/pico.git
synced 2025-04-26 11:16:15 -04:00
17 lines
316 B
TypeScript
17 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 = {};
|