@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
12 lines (11 loc) • 314 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.findProp = findProp;
function findProp(jsx, propName) {
var labelProp = jsx.openingElement.attributes.find(function (attr) {
return attr.type === 'JSXAttribute' && attr.name.name === propName;
});
return labelProp;
}