@wordpress/components
Version:
UI components for WordPress.
19 lines (17 loc) • 329 B
JavaScript
/**
* 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