UNPKG

@wordpress/components

Version:
19 lines (17 loc) 329 B
/** * External dependencies */ import { get } from 'lodash'; /** * Internal dependencies */ import FONT from './font-values'; /** * * @param {keyof FONT} value Path of value from `FONT` * @return {string} Font rule value */ export function font(value) { return get(FONT, value, ''); } //# sourceMappingURL=font.js.map