UNPKG

@kelvininc/ui-components

Version:
9 lines (8 loc) 311 B
import { h } from "@stencil/core"; export const buildElement = (index, key, height, top, renderItem) => { return (h("div", { key: key, class: "item", style: { transform: `translate(0px,${top}px)`, height: `${height}px`, width: '100%' } }, renderItem(index))); };