33 lines
877 B
JavaScript
33 lines
877 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Badge = Badge;
|
|
exports.Icon = Icon;
|
|
exports.VectorIcon = VectorIcon;
|
|
exports.Label = Label;
|
|
function Badge(props) {
|
|
return null;
|
|
}
|
|
function Icon(props) {
|
|
return null;
|
|
}
|
|
/**
|
|
* Helper component for loading vector icons.
|
|
*
|
|
* Prefer using the `md` and `sf` props on `Icon` rather than using this component directly.
|
|
* Only use this component when you need to load a specific icon from a vector icon family.
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* import { Icon, VectorIcon } from 'expo-router';
|
|
* import MaterialCommunityIcons from '@expo/vector-icons/MaterialCommunityIcons';
|
|
*
|
|
* <Icon src={<VectorIcon family={MaterialCommunityIcons} name="home" />} />
|
|
* ```
|
|
*/
|
|
function VectorIcon(props) {
|
|
return null;
|
|
}
|
|
function Label(props) {
|
|
return null;
|
|
}
|
|
//# sourceMappingURL=elements.js.map
|