@empathyco/x-tailwindcss
Version:
Empathy X Tailwind plugin
21 lines (18 loc) • 434 B
JavaScript
;
/**
* Returns the `sharp` variants for component `icon`.
*
* @param _helpers - The {@link TailwindHelpers} to generate CSS.
* @returns The {@link CssStyleOptions} for the component.
*/
function iconSharp(_helpers) {
return {
sharp: {
'*': {
strokeLinecap: 'square',
strokeLinejoin: 'miter',
},
},
};
}
exports.iconSharp = iconSharp;