/** * Main card wrapper component * * An all-around flexible and composable component * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const Main: m.Component; /** * Card header wrapper. This should contain HeaderTitle and HeaderIcon componets * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const Header: m.Component; /** * Header title * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const HeaderTitle: m.Component; /** * Header icon that is right alinged. This should have an Icon component as a child component * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const HeaderIcon: m.Component; /** * Wrapper that should contain an item component using ratios. * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const Image: m.Component; /** * Contains any content that makes up the main body of the card. * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const Content: m.Component; /** * Forms a list of rectangular items along the bottom of the card. * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const Footer: m.Component; /** * Properly sizes the child content into a footer item * * https://bulma.io/documentation/components/card/ * * @type {m.Component} */ export const FooterItem: m.Component; import m from 'mithril';