14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
import React from "react";
|
|
import { createComponent } from "@lit/react";
|
|
import { MdOutlinedIconButton } from "@material/web/iconbutton/outlined-icon-button";
|
|
|
|
const OutlinedIconButton = createComponent({
|
|
tagName: "md-outlined-icon-button",
|
|
elementClass: MdOutlinedIconButton,
|
|
react: React,
|
|
events: {
|
|
onClick: "click"
|
|
}
|
|
});
|
|
|
|
export default OutlinedIconButton |