react-native-tree-multi-select
Version:
A super-fast, customizable tree view component for React Native with multi-selection, checkboxes, and search filtering capabilities.
17 lines (16 loc) • 526 B
JavaScript
;
import React from "react";
import FontAwesomeIcon from "react-native-vector-icons/FontAwesome";
import { jsx as _jsx } from "react/jsx-runtime";
export const CustomExpandCollapseIcon = /*#__PURE__*/React.memo(_CustomExpandCollapseIcon);
function _CustomExpandCollapseIcon(props) {
const {
isExpanded
} = props;
return /*#__PURE__*/_jsx(FontAwesomeIcon, {
name: isExpanded ? "caret-down" : "caret-right",
size: 20,
color: "black"
});
}
//# sourceMappingURL=CustomExpandCollapseIcon.js.map