/** * @typedef {object} DeleteAttributes * @prop {import('../attributes.mjs').Size} [size] * @prop {(e: Event)=> void} [onclick] */ /** * A versatile delete cross * * The delete element is a stand-alone element that can be used in different contexts. * * https://bulma.io/documentation/elements/delete/ * * @type {m.Component} */ export const Delete: m.Component; export type DeleteAttributes = { size?: import("../attributes.mjs").Size; onclick?: (e: Event) => void; }; import m from 'mithril';