UNPKG

@railzai/railz-visualizations

Version:
14 lines 631 B
/*! * Accounting Data as a Service™ is the solution that makes sense of your business customers' financial data. * Built with Stencil * Copyright (c) FIS. */ /* eslint-disable @typescript-eslint/no-unused-vars */ /* eslint-disable max-len */ import { h } from '@stencil/core'; export function Arrow({ style, up = false, }) { return (h("div", { style: Object.assign({ transform: up ? 'rotate(180deg)' : 'rotate(0deg)', width: '24px', height: '24px' }, style) }, h("svg", { focusable: "false", viewBox: "0 0 24 24", "aria-hidden": "true" }, h("path", { d: "M7 10l5 5 5-5z" })))); } //# sourceMappingURL=arrow.js.map