UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

10 lines 194 B
import { getPadding } from 'seemly'; export function rtlInset(inset) { const { left, right, top, bottom } = getPadding(inset); return `${top} ${left} ${bottom} ${right}`; }