@shopify/polaris
Version:
Shopify’s product component library
15 lines (12 loc) • 330 B
JavaScript
import React$1 from 'react';
import styles from './KeyboardKey.scss.js';
function KeyboardKey({
children
}) {
var key = children || '';
key = key.length > 1 ? key.toLowerCase() : key.toUpperCase();
return /*#__PURE__*/React$1.createElement("kbd", {
className: styles.KeyboardKey
}, key);
}
export { KeyboardKey };