first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

18
node_modules/@expo/vector-icons/.eslintrc.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
"root": true,
"ignorePatterns": [
".idea/",
"build/",
"node_modules/",
"src/vendor/"
],
"extends": [
"universe/node",
"universe/web"
],
"settings": {
"react": {
"version": "18"
}
}
}

View File

@@ -0,0 +1,18 @@
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint --max-warnings 0

View File

@@ -0,0 +1,43 @@
# adapted from https://github.com/googleapis/release-please-action#automating-publication-to-npm
name: release-please
on:
push:
branches:
- master
workflow_dispatch:
# `id-token` for publishing: https://docs.npmjs.com/trusted-publishers#github-actions-configuration
# the rest for release-please: https://github.com/googleapis/release-please-action#basic-configuration
permissions:
id-token: write # Required for OIDC
contents: write # Required by release-please to create a release
pull-requests: write # Required by release-please to open a release PR
issues: write # Required by release-please to comment on release-related issues
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
id: release
if: ${{ github.event_name == 'push' }}
with:
release-type: node
# The logic below handles the npm publication:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
# these if statements ensure that a publication only occurs when
# a new release is created, or when manually triggered:
if: ${{ steps.release.outputs.release_created || github.event_name == 'workflow_dispatch' }}
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 24 # npm >= 11.5.1 (ships with Node 24) required for OIDC trusted publishing
cache: yarn
if: ${{ steps.release.outputs.release_created || github.event_name == 'workflow_dispatch' }}
# yarn install triggers the `prepare` lifecycle script which runs the full build
- run: yarn install --frozen-lockfile
if: ${{ steps.release.outputs.release_created || github.event_name == 'workflow_dispatch' }}
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: '' # Clear the secret, if provided, so npm publishes via OIDC
if: ${{ steps.release.outputs.release_created || github.event_name == 'workflow_dispatch' }}

7
node_modules/@expo/vector-icons/.prettierrc generated vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"bracketSameLine": true,
"trailingComma": "es5"
}

2
node_modules/@expo/vector-icons/AntDesign.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import AntDesign from "./build/AntDesign";
export default AntDesign;

2
node_modules/@expo/vector-icons/AntDesign.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import AntDesign from './build/AntDesign';
export default AntDesign;

20
node_modules/@expo/vector-icons/CHANGELOG.md generated vendored Normal file
View File

@@ -0,0 +1,20 @@
# Changelog
## [15.1.1](https://github.com/expo/vector-icons/compare/v15.1.0...v15.1.1) (2026-02-23)
### Bug Fixes
* return icon set in getIconSetForProps fallback ([#361](https://github.com/expo/vector-icons/issues/361)) ([579cbfd](https://github.com/expo/vector-icons/commit/579cbfdc1b0b446a37be5d37bf6bec5e5ab0f9fe))
## [15.1.0](https://github.com/expo/vector-icons/compare/v15.0.2...v15.1.0) (2026-02-20)
### Features
* add support for new IcoMoon app JSON format ([#356](https://github.com/expo/vector-icons/issues/356)) ([93e8b2e](https://github.com/expo/vector-icons/commit/93e8b2e97e2b8467c8553a3be8a582b6c23b2a1b))
### Bug Fixes
* improve type strictness for font map ([#349](https://github.com/expo/vector-icons/issues/349)) ([5699c4f](https://github.com/expo/vector-icons/commit/5699c4f39edda29d44f4a519fc45d9bdf623202c))

2
node_modules/@expo/vector-icons/Entypo.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Entypo from './build/Entypo';
export default Entypo;

2
node_modules/@expo/vector-icons/Entypo.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Entypo from './build/Entypo';
export default Entypo;

2
node_modules/@expo/vector-icons/EvilIcons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import EvilIcons from './build/EvilIcons';
export default EvilIcons;

2
node_modules/@expo/vector-icons/EvilIcons.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import EvilIcons from './build/EvilIcons';
export default EvilIcons;

2
node_modules/@expo/vector-icons/Feather.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Feather from './build/Feather';
export default Feather;

2
node_modules/@expo/vector-icons/Feather.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Feather from './build/Feather';
export default Feather;

2
node_modules/@expo/vector-icons/FontAwesome.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import FontAwesome from './build/FontAwesome';
export default FontAwesome;

2
node_modules/@expo/vector-icons/FontAwesome.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import FontAwesome from './build/FontAwesome';
export default FontAwesome;

2
node_modules/@expo/vector-icons/FontAwesome5.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import FontAwesome5 from './build/FontAwesome5';
export default FontAwesome5;

2
node_modules/@expo/vector-icons/FontAwesome5.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import FontAwesome5 from './build/FontAwesome5';
export default FontAwesome5;

2
node_modules/@expo/vector-icons/FontAwesome6.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import FontAwesome6 from './build/FontAwesome6';
export default FontAwesome6;

2
node_modules/@expo/vector-icons/FontAwesome6.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import FontAwesome6 from './build/FontAwesome6';
export default FontAwesome6;

2
node_modules/@expo/vector-icons/Fontisto.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Fontisto from "./build/Fontisto";
export default Fontisto;

2
node_modules/@expo/vector-icons/Fontisto.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Fontisto from "./build/Fontisto";
export default Fontisto;

2
node_modules/@expo/vector-icons/Foundation.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Foundation from './build/Foundation';
export default Foundation;

2
node_modules/@expo/vector-icons/Foundation.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Foundation from './build/Foundation';
export default Foundation;

2
node_modules/@expo/vector-icons/Ionicons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Ionicons from './build/Ionicons';
export default Ionicons;

2
node_modules/@expo/vector-icons/Ionicons.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Ionicons from './build/Ionicons';
export default Ionicons;

22
node_modules/@expo/vector-icons/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2015 Joel Arvidsson
Copyright (c) 2020 650 Industries
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,2 @@
import MaterialCommunityIcons from './build/MaterialCommunityIcons';
export default MaterialCommunityIcons;

View File

@@ -0,0 +1,2 @@
import MaterialCommunityIcons from './build/MaterialCommunityIcons';
export default MaterialCommunityIcons;

2
node_modules/@expo/vector-icons/MaterialIcons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import MaterialIcons from './build/MaterialIcons';
export default MaterialIcons;

2
node_modules/@expo/vector-icons/MaterialIcons.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import MaterialIcons from './build/MaterialIcons';
export default MaterialIcons;

2
node_modules/@expo/vector-icons/Octicons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Octicons from './build/Octicons';
export default Octicons;

2
node_modules/@expo/vector-icons/Octicons.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Octicons from './build/Octicons';
export default Octicons;

57
node_modules/@expo/vector-icons/README.md generated vendored Normal file
View File

@@ -0,0 +1,57 @@
# @expo/vector-icons
This library is a compatibility layer around [@oblador/react-native-vector-icons](https://github.com/oblador/react-native-vector-icons) to work with the Expo asset system. If you're using React Native without Expo, you have no need for this library -- carry on! (or maybe [check out Expo](https://expo.dev/)).
## Resources
- [@expo/vector-icons directory](https://icons.expo.fyi/) - a searchable list of all included icons.
- [Font Awesome icons directory](https://fontawesome.com/icons) - all Font Awesome icons (including the Pro icons)
- [Expo documentation](https://docs.expo.dev/)
![Screenshot of website](.github/assets/website-screenshot.png)
## Usage
This library is part of the `expo` package, so if you are using `expo` you can simply use it like so
```tsx
import React from 'react';
import Ionicons from '@expo/vector-icons/Ionicons';
export default class IconExample extends React.Component {
render() {
return <Ionicons name='md-checkmark-circle' size={32} color='green' />;
}
}
```
for more usage see [Expo icons documentation](https://docs.expo.io/guides/icons/)
## Maintainers
### How to upgrade the react-native-vector-icons version
I'll be honest with you, it's not straightforward. You should set aside about an hour to do this.
1. Clone [react-native-vector-icons](https://github.com/oblador/react-native-vector-icons)
2. Copy files from the cloned directory into `src/vendor/react-native-vector-icons`, except the dotfiles.
3. Run `git status` and look at the untracked files. Remove anything that doesn't seem needed. For example, remove package.json, react-native.config.js, react-native.osx.js. Things to look out for are new icon fonts or new `create-*` files.
4. Run `git diff **/*.js` - do any of the changes look like they should be synced over to the equivalent `.ts` files in `src`?/
- ToolBarAndroid and TabBarIOS are not included in @expo/vector-icons
- Neither are the native vendor font loading or image source related methods.
- Probably there won't be anything important. The main thing to look out for are user-facing API changes, the `@expo/vector-icons` internals are different enough that you don't need to worry about it.
- Were any dependencies added? Check imports against those in the current package.json, see why they were added - maybe they support the `bin` scripts, in which case we need them.
- TypeScript/Flow types for Icon/Icon.Button components may need to be updated.
5. Run `yarn` when you're done and it'll copy vendor files over to build.
6. Go to the website directory, test it out by changing the `@expo/vector-icons` version to `"../"` (TODO: investigate this quirk!). If new icons were added, ensure that they work here.
- While you're here, it would be kind of you to update the Expo SDK version to latest.
7. Publish an alpha release, switch back the version in the website to that version.
8. Open a PR, have someone else like @brentvatne look at it. If it's good to go, publish the final version, update the website version again, then merge. The website will be deployed when you merge to master.
### How to deploy the website
Create a commit on master.

2
node_modules/@expo/vector-icons/SimpleLineIcons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import SimpleLineIcons from './build/SimpleLineIcons';
export default SimpleLineIcons;

2
node_modules/@expo/vector-icons/SimpleLineIcons.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import SimpleLineIcons from './build/SimpleLineIcons';
export default SimpleLineIcons;

2
node_modules/@expo/vector-icons/Zocial.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Zocial from './build/Zocial';
export default Zocial;

2
node_modules/@expo/vector-icons/Zocial.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import Zocial from './build/Zocial';
export default Zocial;

3
node_modules/@expo/vector-icons/build/AntDesign.d.ts generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"AntDesign.d.ts","sourceRoot":"","sources":["../src/AntDesign.ts"],"names":[],"mappings":";AAMA,wBAAwD"}

6
node_modules/@expo/vector-icons/build/AntDesign.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/AntDesign.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/AntDesign.json';
export default createIconSet(glyphMap, 'anticon', font);
//# sourceMappingURL=AntDesign.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"AntDesign.js","sourceRoot":"","sources":["../src/AntDesign.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,wDAAwD,CAAC;AAC1E,OAAO,QAAQ,MAAM,6DAA6D,CAAC;AAEnF,eAAe,aAAa,CAAC,QAAQ,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/AntDesign.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/AntDesign.json';\n\nexport default createIconSet(glyphMap, 'anticon', font);\n"]}

3
node_modules/@expo/vector-icons/build/Entypo.d.ts generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"Entypo.d.ts","sourceRoot":"","sources":["../src/Entypo.ts"],"names":[],"mappings":";AAMA,wBAAuD"}

6
node_modules/@expo/vector-icons/build/Entypo.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/Entypo.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/Entypo.json';
export default createIconSet(glyphMap, 'entypo', font);
//# sourceMappingURL=Entypo.js.map

1
node_modules/@expo/vector-icons/build/Entypo.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"Entypo.js","sourceRoot":"","sources":["../src/Entypo.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,qDAAqD,CAAC;AACvE,OAAO,QAAQ,MAAM,0DAA0D,CAAC;AAEhF,eAAe,aAAa,CAAC,QAAQ,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/Entypo.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/Entypo.json';\n\nexport default createIconSet(glyphMap, 'entypo', font);\n"]}

3
node_modules/@expo/vector-icons/build/EvilIcons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
declare const _default: import("./createIconSet").Icon<"link" | "search" | "image" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "bell" | "calendar" | "camera" | "check" | "close" | "comment" | "credit-card" | "exclamation" | "eye" | "heart" | "like" | "lock" | "minus" | "plus" | "question" | "redo" | "retweet" | "star" | "tag" | "trophy" | "undo" | "unlock" | "user" | "archive" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "location" | "pencil" | "trash" | "cart" | "chart" | "close-o" | "envelope" | "external-link" | "gear" | "navicon" | "paperclip" | "play" | "pointer" | "refresh" | "sc-facebook" | "sc-github" | "sc-google-plus" | "sc-instagram" | "sc-linkedin" | "sc-odnoklassniki" | "sc-pinterest" | "sc-skype" | "sc-soundcloud" | "sc-telegram" | "sc-tumblr" | "sc-twitter" | "sc-vimeo" | "sc-vk" | "sc-youtube" | "share-apple" | "share-google" | "spinner" | "spinner-2" | "spinner-3", "evilicons">;
export default _default;
//# sourceMappingURL=EvilIcons.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"EvilIcons.d.ts","sourceRoot":"","sources":["../src/EvilIcons.ts"],"names":[],"mappings":";AAMA,wBAA0D"}

6
node_modules/@expo/vector-icons/build/EvilIcons.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/EvilIcons.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/EvilIcons.json';
export default createIconSet(glyphMap, 'evilicons', font);
//# sourceMappingURL=EvilIcons.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"EvilIcons.js","sourceRoot":"","sources":["../src/EvilIcons.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,wDAAwD,CAAC;AAC1E,OAAO,QAAQ,MAAM,6DAA6D,CAAC;AAEnF,eAAe,aAAa,CAAC,QAAQ,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/EvilIcons.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/EvilIcons.json';\n\nexport default createIconSet(glyphMap, 'evilicons', font);\n"]}

3
node_modules/@expo/vector-icons/build/Feather.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
declare const _default: import("./createIconSet").Icon<"link" | "search" | "image" | "menu" | "radio" | "align-center" | "align-left" | "align-right" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "bar-chart" | "bell" | "bold" | "book" | "calendar" | "camera" | "check" | "check-circle" | "check-square" | "chrome" | "cloud" | "code" | "codepen" | "coffee" | "compass" | "copy" | "credit-card" | "database" | "delete" | "download" | "dribbble" | "edit" | "eye" | "facebook" | "fast-forward" | "file" | "file-text" | "filter" | "flag" | "folder" | "frown" | "gift" | "github" | "gitlab" | "heart" | "home" | "inbox" | "info" | "instagram" | "italic" | "key" | "layout" | "linkedin" | "lock" | "mail" | "meh" | "minus" | "minus-circle" | "minus-square" | "monitor" | "moon" | "pause" | "pause-circle" | "phone" | "pie-chart" | "play-circle" | "plus" | "plus-circle" | "plus-square" | "printer" | "save" | "send" | "shopping-cart" | "slack" | "sliders" | "smile" | "star" | "sun" | "table" | "tablet" | "tag" | "tool" | "truck" | "twitch" | "twitter" | "underline" | "unlock" | "upload" | "user" | "wifi" | "x" | "youtube" | "zoom-in" | "zoom-out" | "archive" | "battery" | "bookmark" | "box" | "briefcase" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "circle" | "clipboard" | "clock" | "crop" | "feather" | "globe" | "grid" | "layers" | "list" | "log-out" | "map" | "mic" | "mouse-pointer" | "music" | "rss" | "scissors" | "share" | "shield" | "shopping-bag" | "shuffle" | "thermometer" | "thumbs-down" | "thumbs-up" | "trash" | "tv" | "users" | "video" | "voicemail" | "external-link" | "paperclip" | "play" | "activity" | "airplay" | "alert-circle" | "alert-octagon" | "alert-triangle" | "align-justify" | "anchor" | "aperture" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left-circle" | "arrow-right-circle" | "arrow-up-circle" | "arrow-up-left" | "arrow-up-right" | "at-sign" | "award" | "bar-chart-2" | "battery-charging" | "bell-off" | "bluetooth" | "book-open" | "camera-off" | "cast" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "cloud-drizzle" | "cloud-lightning" | "cloud-off" | "cloud-rain" | "cloud-snow" | "codesandbox" | "columns" | "command" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "crosshair" | "disc" | "divide" | "divide-circle" | "divide-square" | "dollar-sign" | "download-cloud" | "droplet" | "edit-2" | "edit-3" | "eye-off" | "figma" | "file-minus" | "file-plus" | "film" | "folder-minus" | "folder-plus" | "framer" | "git-branch" | "git-commit" | "git-merge" | "git-pull-request" | "hard-drive" | "hash" | "headphones" | "help-circle" | "hexagon" | "life-buoy" | "link-2" | "loader" | "log-in" | "map-pin" | "maximize" | "maximize-2" | "message-circle" | "message-square" | "mic-off" | "minimize" | "minimize-2" | "more-horizontal" | "more-vertical" | "move" | "navigation" | "navigation-2" | "octagon" | "package" | "pen-tool" | "percent" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "pocket" | "power" | "refresh-ccw" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "server" | "settings" | "share-2" | "shield-off" | "sidebar" | "skip-back" | "skip-forward" | "slash" | "smartphone" | "speaker" | "square" | "stop-circle" | "sunrise" | "sunset" | "target" | "terminal" | "toggle-left" | "toggle-right" | "trash-2" | "trello" | "trending-down" | "trending-up" | "triangle" | "type" | "umbrella" | "upload-cloud" | "user-check" | "user-minus" | "user-plus" | "user-x" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-x" | "watch" | "wifi-off" | "wind" | "x-circle" | "x-octagon" | "x-square" | "zap" | "zap-off", "feather">;
export default _default;
//# sourceMappingURL=Feather.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Feather.d.ts","sourceRoot":"","sources":["../src/Feather.ts"],"names":[],"mappings":";AAMA,wBAAwD"}

6
node_modules/@expo/vector-icons/build/Feather.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/Feather.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/Feather.json';
export default createIconSet(glyphMap, 'feather', font);
//# sourceMappingURL=Feather.js.map

1
node_modules/@expo/vector-icons/build/Feather.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"Feather.js","sourceRoot":"","sources":["../src/Feather.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,sDAAsD,CAAC;AACxE,OAAO,QAAQ,MAAM,2DAA2D,CAAC;AAEjF,eAAe,aAAa,CAAC,QAAQ,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/Feather.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/Feather.json';\n\nexport default createIconSet(glyphMap, 'feather', font);\n"]}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontAwesome.d.ts","sourceRoot":"","sources":["../src/FontAwesome.ts"],"names":[],"mappings":";AAMA,wBAA4D"}

6
node_modules/@expo/vector-icons/build/FontAwesome.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/FontAwesome.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/FontAwesome.json';
export default createIconSet(glyphMap, 'FontAwesome', font);
//# sourceMappingURL=FontAwesome.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontAwesome.js","sourceRoot":"","sources":["../src/FontAwesome.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,0DAA0D,CAAC;AAC5E,OAAO,QAAQ,MAAM,+DAA+D,CAAC;AAErF,eAAe,aAAa,CAAC,QAAQ,EAAE,aAAa,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/FontAwesome.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/FontAwesome.json';\n\nexport default createIconSet(glyphMap, 'FontAwesome', font);\n"]}

View File

@@ -0,0 +1,9 @@
export declare const FA5Style: {
regular: string;
light: string;
solid: string;
brand: string;
};
declare const iconSet: any;
export default iconSet;
//# sourceMappingURL=FontAwesome5.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontAwesome5.d.ts","sourceRoot":"","sources":["../src/FontAwesome5.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,QAAQ;;;;;CAKpB,CAAC;AAEF,QAAA,MAAM,OAAO,KAAuD,CAAC;AAErE,eAAe,OAAO,CAAC"}

19
node_modules/@expo/vector-icons/build/FontAwesome5.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
'use client';
import { createFA5iconSet } from './createIconSetFromFontAwesome5';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/FontAwesome5Free.json';
import metadata from './vendor/react-native-vector-icons/glyphmaps/FontAwesome5Free_meta.json';
const fontMap = {
Regular: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf'),
Light: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf'),
Solid: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf'),
Brand: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf'),
};
export const FA5Style = {
regular: 'regular',
light: 'light',
solid: 'solid',
brand: 'brand',
};
const iconSet = createFA5iconSet(glyphMap, metadata, fontMap, false);
export default iconSet;
//# sourceMappingURL=FontAwesome5.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontAwesome5.js","sourceRoot":"","sources":["../src/FontAwesome5.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,QAAQ,MAAM,oEAAoE,CAAC;AAC1F,OAAO,QAAQ,MAAM,yEAAyE,CAAC;AAE/F,MAAM,OAAO,GAAG;IACd,OAAO,EAAE,OAAO,CAAC,mEAAmE,CAAC;IACrF,KAAK,EAAE,OAAO,CAAC,mEAAmE,CAAC;IACnF,KAAK,EAAE,OAAO,CAAC,iEAAiE,CAAC;IACjF,KAAK,EAAE,OAAO,CAAC,kEAAkE,CAAC;CACnF,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;CACf,CAAC;AAEF,MAAM,OAAO,GAAG,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;AAErE,eAAe,OAAO,CAAC","sourcesContent":["'use client';\n\nimport { createFA5iconSet } from './createIconSetFromFontAwesome5';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/FontAwesome5Free.json';\nimport metadata from './vendor/react-native-vector-icons/glyphmaps/FontAwesome5Free_meta.json';\n\nconst fontMap = {\n Regular: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf'),\n Light: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf'),\n Solid: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf'),\n Brand: require('./vendor/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf'),\n};\n\nexport const FA5Style = {\n regular: 'regular',\n light: 'light',\n solid: 'solid',\n brand: 'brand',\n};\n\nconst iconSet = createFA5iconSet(glyphMap, metadata, fontMap, false);\n\nexport default iconSet;\n"]}

View File

@@ -0,0 +1,14 @@
export declare const FA6Style: {
regular: string;
light: string;
solid: string;
brand: string;
sharp: string;
sharpLight: string;
sharpSolid: string;
duotone: string;
thin: string;
};
declare const iconSet: any;
export default iconSet;
//# sourceMappingURL=FontAwesome6.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontAwesome6.d.ts","sourceRoot":"","sources":["../src/FontAwesome6.ts"],"names":[],"mappings":"AAkBA,eAAO,MAAM,QAAQ;;;;;;;;;;CAUpB,CAAC;AAEF,QAAA,MAAM,OAAO,KAAuD,CAAC;AAErE,eAAe,OAAO,CAAC"}

29
node_modules/@expo/vector-icons/build/FontAwesome6.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
'use client';
import { createFA6iconSet } from './createIconSetFromFontAwesome6';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/FontAwesome6Free.json';
import metadata from './vendor/react-native-vector-icons/glyphmaps/FontAwesome6Free_meta.json';
const fontMap = {
Regular: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),
Light: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),
Solid: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf'),
Brands: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Brands.ttf'),
Sharp_Regular: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),
Sharp_Light: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),
Sharp_Solid: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf'),
Duotone: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf'),
Thin: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),
};
export const FA6Style = {
regular: 'regular',
light: 'light',
solid: 'solid',
brand: 'brand',
sharp: 'sharp',
sharpLight: 'sharpLight',
sharpSolid: 'sharpSolid',
duotone: 'duotone',
thin: 'thin',
};
const iconSet = createFA6iconSet(glyphMap, metadata, fontMap, false);
export default iconSet;
//# sourceMappingURL=FontAwesome6.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"FontAwesome6.js","sourceRoot":"","sources":["../src/FontAwesome6.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,QAAQ,MAAM,oEAAoE,CAAC;AAC1F,OAAO,QAAQ,MAAM,yEAAyE,CAAC;AAE/F,MAAM,OAAO,GAAG;IACd,OAAO,EAAE,OAAO,CAAC,mEAAmE,CAAC;IACrF,KAAK,EAAE,OAAO,CAAC,mEAAmE,CAAC;IACnF,KAAK,EAAE,OAAO,CAAC,iEAAiE,CAAC;IACjF,MAAM,EAAE,OAAO,CAAC,kEAAkE,CAAC;IACnF,aAAa,EAAE,OAAO,CAAC,mEAAmE,CAAC;IAC3F,WAAW,EAAE,OAAO,CAAC,mEAAmE,CAAC;IACzF,WAAW,EAAE,OAAO,CAAC,iEAAiE,CAAC;IACvF,OAAO,EAAE,OAAO,CAAC,iEAAiE,CAAC;IACnF,IAAI,EAAE,OAAO,CAAC,mEAAmE,CAAC;CACnF,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;CACb,CAAC;AAEF,MAAM,OAAO,GAAG,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;AAErE,eAAe,OAAO,CAAC","sourcesContent":["'use client';\n\nimport { createFA6iconSet } from './createIconSetFromFontAwesome6';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/FontAwesome6Free.json';\nimport metadata from './vendor/react-native-vector-icons/glyphmaps/FontAwesome6Free_meta.json';\n\nconst fontMap = {\n Regular: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),\n Light: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),\n Solid: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf'),\n Brands: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Brands.ttf'),\n Sharp_Regular: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),\n Sharp_Light: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),\n Sharp_Solid: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf'),\n Duotone: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf'),\n Thin: require('./vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf'),\n};\n\nexport const FA6Style = {\n regular: 'regular',\n light: 'light',\n solid: 'solid',\n brand: 'brand',\n sharp: 'sharp',\n sharpLight: 'sharpLight',\n sharpSolid: 'sharpSolid',\n duotone: 'duotone',\n thin: 'thin',\n};\n\nconst iconSet = createFA6iconSet(glyphMap, metadata, fontMap, false);\n\nexport default iconSet;\n"]}

3
node_modules/@expo/vector-icons/build/Fontisto.d.ts generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"Fontisto.d.ts","sourceRoot":"","sources":["../src/Fontisto.ts"],"names":[],"mappings":"AAUA,QAAA,MAAM,OAAO,ohQAA4C,CAAC;AAE1D,eAAe,OAAO,CAAC"}

11
node_modules/@expo/vector-icons/build/Fontisto.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
/**
* Feather icon set component.
* Usage: <Feather name="icon-name" size={20} color="#4F8EF7" />
*/
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/Fontisto.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/Fontisto.json';
const iconSet = createIconSet(glyphMap, 'Fontisto', font);
export default iconSet;
//# sourceMappingURL=Fontisto.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Fontisto.js","sourceRoot":"","sources":["../src/Fontisto.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,uDAAuD,CAAC;AACzE,OAAO,QAAQ,MAAM,4DAA4D,CAAC;AAElF,MAAM,OAAO,GAAG,aAAa,CAAC,QAAQ,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;AAE1D,eAAe,OAAO,CAAC","sourcesContent":["/**\n * Feather icon set component.\n * Usage: <Feather name=\"icon-name\" size={20} color=\"#4F8EF7\" />\n */\n'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/Fontisto.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/Fontisto.json';\n\nconst iconSet = createIconSet(glyphMap, 'Fontisto', font);\n\nexport default iconSet;\n"]}

View File

@@ -0,0 +1,3 @@
declare const _default: import("./createIconSet").Icon<"link" | "alert" | "checkbox" | "align-center" | "align-left" | "align-right" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "bold" | "book" | "calendar" | "camera" | "check" | "cloud" | "comment" | "compass" | "credit-card" | "crown" | "database" | "dislike" | "dollar" | "download" | "euro" | "eye" | "fast-forward" | "filter" | "flag" | "folder" | "folder-add" | "heart" | "home" | "html5" | "info" | "italic" | "key" | "laptop" | "layout" | "like" | "lock" | "mail" | "minus" | "minus-circle" | "mobile" | "monitor" | "pause" | "play-circle" | "plus" | "pound" | "save" | "shopping-cart" | "sound" | "star" | "stop" | "strikethrough" | "trophy" | "underline" | "unlock" | "upload" | "usb" | "x" | "zoom-in" | "zoom-out" | "archive" | "bookmark" | "clipboard" | "clock" | "crop" | "list" | "loop" | "magnifying-glass" | "map" | "megaphone" | "music" | "paypal" | "pencil" | "price-tag" | "print" | "quote" | "rss" | "share" | "shield" | "shopping-bag" | "shuffle" | "ticket" | "trash" | "video" | "paperclip" | "play" | "refresh" | "align-justify" | "anchor" | "at-sign" | "bluetooth" | "power" | "rewind" | "target" | "upload-cloud" | "volume" | "x-circle" | "photo" | "eject" | "asterisk" | "comments" | "wrench" | "unlink" | "superscript" | "subscript" | "microphone" | "css3" | "yen" | "bitcoin" | "female" | "male" | "wheelchair" | "paw" | "battery-full" | "battery-half" | "battery-empty" | "universal-access" | "blind" | "braille" | "address-book" | "marker" | "web" | "lightbulb" | "first-aid" | "skull" | "book-bookmark" | "burst" | "elevator" | "record" | "annotate" | "arrows-compress" | "arrows-expand" | "arrows-in" | "arrows-out" | "asl" | "background-color" | "bitcoin-circle" | "burst-new" | "burst-sale" | "clipboard-notes" | "clipboard-pencil" | "closed-caption" | "comment-minus" | "comment-quotes" | "comment-video" | "contrast" | "die-five" | "die-four" | "die-one" | "die-six" | "die-three" | "die-two" | "dollar-bill" | "female-symbol" | "folder-lock" | "foot" | "foundation" | "graph-bar" | "graph-horizontal" | "graph-pie" | "graph-trend" | "guide-dog" | "hearing-aid" | "indent-less" | "indent-more" | "list-bullet" | "list-number" | "list-thumbnails" | "male-female" | "male-symbol" | "mobile-signal" | "mountains" | "next" | "no-dogs" | "no-smoking" | "page-add" | "page-copy" | "page-csv" | "page-delete" | "page-doc" | "page-edit" | "page-export-csv" | "page-export-doc" | "page-export-pdf" | "page-export" | "page-filled" | "page-multiple" | "page-pdf" | "page-remove" | "page-search" | "page" | "paint-bucket" | "play-video" | "previous" | "pricetag-multiple" | "prohibited" | "projection-screen" | "puzzle" | "results-demographics" | "results" | "rewind-ten" | "safety-cone" | "sheriff-badge" | "social-500px" | "social-adobe" | "social-amazon" | "social-android" | "social-apple" | "social-behance" | "social-bing" | "social-blogger" | "social-delicious" | "social-designer-news" | "social-deviant-art" | "social-digg" | "social-dribbble" | "social-drive" | "social-dropbox" | "social-evernote" | "social-facebook" | "social-flickr" | "social-forrst" | "social-foursquare" | "social-game-center" | "social-github" | "social-google-plus" | "social-hacker-news" | "social-hi5" | "social-instagram" | "social-joomla" | "social-lastfm" | "social-linkedin" | "social-medium" | "social-myspace" | "social-orkut" | "social-path" | "social-picasa" | "social-pinterest" | "social-rdio" | "social-reddit" | "social-skillshare" | "social-skype" | "social-smashing-mag" | "social-snapchat" | "social-spotify" | "social-squidoo" | "social-stack-overflow" | "social-steam" | "social-stumbleupon" | "social-treehouse" | "social-tumblr" | "social-twitter" | "social-vimeo" | "social-windows" | "social-xbox" | "social-yahoo" | "social-yelp" | "social-youtube" | "social-zerply" | "social-zurb" | "tablet-landscape" | "tablet-portrait" | "target-two" | "telephone-accessible" | "telephone" | "text-color" | "thumbnails" | "torso-business" | "torso-female" | "torso" | "torsos-all-female" | "torsos-all" | "torsos-female-male" | "torsos-male-female" | "torsos" | "trees" | "volume-none" | "volume-strike" | "widget", "foundation">;
export default _default;
//# sourceMappingURL=Foundation.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Foundation.d.ts","sourceRoot":"","sources":["../src/Foundation.ts"],"names":[],"mappings":";AAMA,wBAA2D"}

6
node_modules/@expo/vector-icons/build/Foundation.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/Foundation.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/Foundation.json';
export default createIconSet(glyphMap, 'foundation', font);
//# sourceMappingURL=Foundation.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Foundation.js","sourceRoot":"","sources":["../src/Foundation.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,yDAAyD,CAAC;AAC3E,OAAO,QAAQ,MAAM,8DAA8D,CAAC;AAEpF,eAAe,aAAa,CAAC,QAAQ,EAAE,YAAY,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/Foundation.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/Foundation.json';\n\nexport default createIconSet(glyphMap, 'foundation', font);\n"]}

20
node_modules/@expo/vector-icons/build/Icons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
export { default as AntDesign } from './AntDesign';
export { default as Entypo } from './Entypo';
export { default as EvilIcons } from './EvilIcons';
export { default as Feather } from './Feather';
export { default as Fontisto } from './Fontisto';
export { default as FontAwesome } from './FontAwesome';
export { default as FontAwesome5 } from './FontAwesome5';
export { default as FontAwesome6 } from './FontAwesome6';
export { default as Foundation } from './Foundation';
export { default as Ionicons } from './Ionicons';
export { default as MaterialCommunityIcons } from './MaterialCommunityIcons';
export { default as MaterialIcons } from './MaterialIcons';
export { default as Octicons } from './Octicons';
export { default as SimpleLineIcons } from './SimpleLineIcons';
export { default as Zocial } from './Zocial';
export { default as createMultiStyleIconSet } from './createMultiStyleIconSet';
export { default as createIconSet } from './createIconSet';
export { default as createIconSetFromFontello } from './createIconSetFromFontello';
export { default as createIconSetFromIcoMoon } from './createIconSetFromIcoMoon';
//# sourceMappingURL=Icons.d.ts.map

1
node_modules/@expo/vector-icons/build/Icons.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../src/Icons.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,4BAA4B,CAAC"}

21
node_modules/@expo/vector-icons/build/Icons.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
'use client';
export { default as AntDesign } from './AntDesign';
export { default as Entypo } from './Entypo';
export { default as EvilIcons } from './EvilIcons';
export { default as Feather } from './Feather';
export { default as Fontisto } from './Fontisto';
export { default as FontAwesome } from './FontAwesome';
export { default as FontAwesome5 } from './FontAwesome5';
export { default as FontAwesome6 } from './FontAwesome6';
export { default as Foundation } from './Foundation';
export { default as Ionicons } from './Ionicons';
export { default as MaterialCommunityIcons } from './MaterialCommunityIcons';
export { default as MaterialIcons } from './MaterialIcons';
export { default as Octicons } from './Octicons';
export { default as SimpleLineIcons } from './SimpleLineIcons';
export { default as Zocial } from './Zocial';
export { default as createMultiStyleIconSet } from './createMultiStyleIconSet';
export { default as createIconSet } from './createIconSet';
export { default as createIconSetFromFontello } from './createIconSetFromFontello';
export { default as createIconSetFromIcoMoon } from './createIconSetFromIcoMoon';
//# sourceMappingURL=Icons.js.map

1
node_modules/@expo/vector-icons/build/Icons.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"Icons.js","sourceRoot":"","sources":["../src/Icons.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,4BAA4B,CAAC","sourcesContent":["'use client';\n\nexport { default as AntDesign } from './AntDesign';\nexport { default as Entypo } from './Entypo';\nexport { default as EvilIcons } from './EvilIcons';\nexport { default as Feather } from './Feather';\nexport { default as Fontisto } from './Fontisto';\nexport { default as FontAwesome } from './FontAwesome';\nexport { default as FontAwesome5 } from './FontAwesome5';\nexport { default as FontAwesome6 } from './FontAwesome6';\nexport { default as Foundation } from './Foundation';\nexport { default as Ionicons } from './Ionicons';\nexport { default as MaterialCommunityIcons } from './MaterialCommunityIcons';\nexport { default as MaterialIcons } from './MaterialIcons';\nexport { default as Octicons } from './Octicons';\nexport { default as SimpleLineIcons } from './SimpleLineIcons';\nexport { default as Zocial } from './Zocial';\nexport { default as createMultiStyleIconSet } from './createMultiStyleIconSet';\nexport { default as createIconSet } from './createIconSet';\nexport { default as createIconSetFromFontello } from './createIconSetFromFontello';\nexport { default as createIconSetFromIcoMoon } from './createIconSetFromIcoMoon';\n"]}

142
node_modules/@expo/vector-icons/build/IconsLazy.js generated vendored Normal file
View File

@@ -0,0 +1,142 @@
"use strict";
'use client';
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "AntDesign", {
enumerable: true,
get: function () {
return _AntDesign.default;
}
});
Object.defineProperty(exports, "Entypo", {
enumerable: true,
get: function () {
return _Entypo.default;
}
});
Object.defineProperty(exports, "EvilIcons", {
enumerable: true,
get: function () {
return _EvilIcons.default;
}
});
Object.defineProperty(exports, "Feather", {
enumerable: true,
get: function () {
return _Feather.default;
}
});
Object.defineProperty(exports, "FontAwesome", {
enumerable: true,
get: function () {
return _FontAwesome.default;
}
});
Object.defineProperty(exports, "FontAwesome5", {
enumerable: true,
get: function () {
return _FontAwesome2.default;
}
});
Object.defineProperty(exports, "FontAwesome6", {
enumerable: true,
get: function () {
return _FontAwesome3.default;
}
});
Object.defineProperty(exports, "Fontisto", {
enumerable: true,
get: function () {
return _Fontisto.default;
}
});
Object.defineProperty(exports, "Foundation", {
enumerable: true,
get: function () {
return _Foundation.default;
}
});
Object.defineProperty(exports, "Ionicons", {
enumerable: true,
get: function () {
return _Ionicons.default;
}
});
Object.defineProperty(exports, "MaterialCommunityIcons", {
enumerable: true,
get: function () {
return _MaterialCommunityIcons.default;
}
});
Object.defineProperty(exports, "MaterialIcons", {
enumerable: true,
get: function () {
return _MaterialIcons.default;
}
});
Object.defineProperty(exports, "Octicons", {
enumerable: true,
get: function () {
return _Octicons.default;
}
});
Object.defineProperty(exports, "SimpleLineIcons", {
enumerable: true,
get: function () {
return _SimpleLineIcons.default;
}
});
Object.defineProperty(exports, "Zocial", {
enumerable: true,
get: function () {
return _Zocial.default;
}
});
Object.defineProperty(exports, "createIconSet", {
enumerable: true,
get: function () {
return _createIconSet.default;
}
});
Object.defineProperty(exports, "createIconSetFromFontello", {
enumerable: true,
get: function () {
return _createIconSetFromFontello.default;
}
});
Object.defineProperty(exports, "createIconSetFromIcoMoon", {
enumerable: true,
get: function () {
return _createIconSetFromIcoMoon.default;
}
});
Object.defineProperty(exports, "createMultiStyleIconSet", {
enumerable: true,
get: function () {
return _createMultiStyleIconSet.default;
}
});
var _AntDesign = _interopRequireDefault(require("./AntDesign"));
var _Entypo = _interopRequireDefault(require("./Entypo"));
var _EvilIcons = _interopRequireDefault(require("./EvilIcons"));
var _Feather = _interopRequireDefault(require("./Feather"));
var _Fontisto = _interopRequireDefault(require("./Fontisto"));
var _FontAwesome = _interopRequireDefault(require("./FontAwesome"));
var _FontAwesome2 = _interopRequireDefault(require("./FontAwesome5"));
var _FontAwesome3 = _interopRequireDefault(require("./FontAwesome6"));
var _Foundation = _interopRequireDefault(require("./Foundation"));
var _Ionicons = _interopRequireDefault(require("./Ionicons"));
var _MaterialCommunityIcons = _interopRequireDefault(require("./MaterialCommunityIcons"));
var _MaterialIcons = _interopRequireDefault(require("./MaterialIcons"));
var _Octicons = _interopRequireDefault(require("./Octicons"));
var _SimpleLineIcons = _interopRequireDefault(require("./SimpleLineIcons"));
var _Zocial = _interopRequireDefault(require("./Zocial"));
var _createMultiStyleIconSet = _interopRequireDefault(require("./createMultiStyleIconSet"));
var _createIconSet = _interopRequireDefault(require("./createIconSet"));
var _createIconSetFromFontello = _interopRequireDefault(require("./createIconSetFromFontello"));
var _createIconSetFromIcoMoon = _interopRequireDefault(require("./createIconSetFromIcoMoon"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
//# sourceMappingURL=IconsLazy.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../src/Icons.ts"],"names":[],"mappings":";AAAA,YAAY;;AAAC,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,KAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,UAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,OAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,UAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,QAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,YAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,aAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,aAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,SAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,WAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,SAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,uBAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,cAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,SAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,gBAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,OAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,cAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,0BAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,yBAAA,CAAA,OAAA;EAAA;AAAA;AAAA,MAAA,CAAA,cAAA,CAAA,OAAA;EAAA,UAAA;EAAA,GAAA,WAAA,CAAA;IAAA,OAAA,wBAAA,CAAA,OAAA;EAAA;AAAA;AAEb,IAAA,UAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,OAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,UAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,QAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,SAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,YAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,aAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,aAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,WAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,SAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,uBAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,cAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,SAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,gBAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,OAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,wBAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,cAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,0BAAA,GAAA,sBAAA,CAAA,OAAA;AACA,IAAA,yBAAA,GAAA,sBAAA,CAAA,OAAA;AAAiF,SAAA,uBAAA,GAAA,WAAA,GAAA,IAAA,GAAA,CAAA,UAAA,GAAA,GAAA,KAAA,OAAA,EAAA,GAAA","file":"IconsLazy.js","sourcesContent":["'use client';\n\nexport { default as AntDesign } from './AntDesign';\nexport { default as Entypo } from './Entypo';\nexport { default as EvilIcons } from './EvilIcons';\nexport { default as Feather } from './Feather';\nexport { default as Fontisto } from './Fontisto';\nexport { default as FontAwesome } from './FontAwesome';\nexport { default as FontAwesome5 } from './FontAwesome5';\nexport { default as FontAwesome6 } from './FontAwesome6';\nexport { default as Foundation } from './Foundation';\nexport { default as Ionicons } from './Ionicons';\nexport { default as MaterialCommunityIcons } from './MaterialCommunityIcons';\nexport { default as MaterialIcons } from './MaterialIcons';\nexport { default as Octicons } from './Octicons';\nexport { default as SimpleLineIcons } from './SimpleLineIcons';\nexport { default as Zocial } from './Zocial';\nexport { default as createMultiStyleIconSet } from './createMultiStyleIconSet';\nexport { default as createIconSet } from './createIconSet';\nexport { default as createIconSetFromFontello } from './createIconSetFromFontello';\nexport { default as createIconSetFromIcoMoon } from './createIconSetFromIcoMoon';\n"]}

3
node_modules/@expo/vector-icons/build/Ionicons.d.ts generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"Ionicons.d.ts","sourceRoot":"","sources":["../src/Ionicons.ts"],"names":[],"mappings":";AAMA,wBAAyD"}

6
node_modules/@expo/vector-icons/build/Ionicons.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/Ionicons.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/Ionicons.json';
export default createIconSet(glyphMap, 'ionicons', font);
//# sourceMappingURL=Ionicons.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Ionicons.js","sourceRoot":"","sources":["../src/Ionicons.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,uDAAuD,CAAC;AACzE,OAAO,QAAQ,MAAM,4DAA4D,CAAC;AAElF,eAAe,aAAa,CAAC,QAAQ,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/Ionicons.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/Ionicons.json';\n\nexport default createIconSet(glyphMap, 'ionicons', font);\n"]}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"MaterialCommunityIcons.d.ts","sourceRoot":"","sources":["../src/MaterialCommunityIcons.ts"],"names":[],"mappings":";AAMA,wBAAmE"}

View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/MaterialCommunityIcons.json';
export default createIconSet(glyphMap, 'material-community', font);
//# sourceMappingURL=MaterialCommunityIcons.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"MaterialCommunityIcons.js","sourceRoot":"","sources":["../src/MaterialCommunityIcons.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,qEAAqE,CAAC;AACvF,OAAO,QAAQ,MAAM,0EAA0E,CAAC;AAEhG,eAAe,aAAa,CAAC,QAAQ,EAAE,oBAAoB,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/MaterialCommunityIcons.json';\n\nexport default createIconSet(glyphMap, 'material-community', font);\n"]}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"MaterialIcons.d.ts","sourceRoot":"","sources":["../src/MaterialIcons.ts"],"names":[],"mappings":";AAMA,wBAAyD"}

View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/MaterialIcons.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/MaterialIcons.json';
export default createIconSet(glyphMap, 'material', font);
//# sourceMappingURL=MaterialIcons.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"MaterialIcons.js","sourceRoot":"","sources":["../src/MaterialIcons.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,4DAA4D,CAAC;AAC9E,OAAO,QAAQ,MAAM,iEAAiE,CAAC;AAEvF,eAAe,aAAa,CAAC,QAAQ,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/MaterialIcons.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/MaterialIcons.json';\n\nexport default createIconSet(glyphMap, 'material', font);\n"]}

3
node_modules/@expo/vector-icons/build/Octicons.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
declare const _default: import("./createIconSet").Icon<"number" | "link" | "search" | "image" | "alert" | "checkbox" | "tab" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "bell" | "bold" | "book" | "bug" | "calendar" | "check" | "check-circle" | "cloud" | "code" | "comment" | "container" | "copy" | "credit-card" | "dash" | "database" | "diff" | "download" | "ellipsis" | "eye" | "file" | "file-zip" | "filter" | "gift" | "heart" | "history" | "home" | "hourglass" | "inbox" | "info" | "italic" | "key" | "lock" | "mail" | "moon" | "pause" | "plus" | "plus-circle" | "project" | "question" | "read" | "redo" | "rocket" | "ruby" | "sliders" | "star" | "stop" | "strikethrough" | "sun" | "sync" | "table" | "tag" | "trophy" | "undo" | "unlock" | "upload" | "verified" | "x" | "zoom-in" | "zoom-out" | "archive" | "bookmark" | "briefcase" | "browser" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "circle" | "clock" | "globe" | "infinity" | "light-bulb" | "location" | "megaphone" | "note" | "pencil" | "pin" | "quote" | "reply" | "rss" | "share" | "shield" | "stopwatch" | "tools" | "trash" | "triangle-down" | "triangle-left" | "triangle-right" | "triangle-up" | "unread" | "video" | "gear" | "paperclip" | "play" | "arrow-down-left" | "arrow-down-right" | "arrow-up-left" | "arrow-up-right" | "columns" | "cpu" | "git-branch" | "git-commit" | "git-merge" | "git-pull-request" | "hash" | "package" | "server" | "square" | "terminal" | "x-circle" | "zap" | "sign-out" | "sign-in" | "sort-desc" | "sort-asc" | "paste" | "unlink" | "mortar-board" | "plug" | "bell-slash" | "diamond" | "id-badge" | "meter" | "markdown" | "file-code" | "heading" | "paintbrush" | "person" | "smiley" | "pulse" | "accessibility" | "apps" | "beaker" | "cloud-offline" | "duplicate" | "flame" | "git-compare" | "logo-github" | "people" | "person-add" | "telescope" | "broadcast" | "devices" | "eye-closed" | "filter-remove" | "graph" | "mirror" | "shield-check" | "shield-lock" | "square-circle" | "webhook" | "checklist" | "horizontal-rule" | "report" | "accessibility-inset" | "ai-model" | "alert-fill" | "arrow-both" | "arrow-switch" | "bell-fill" | "blocked" | "bookmark-filled" | "bookmark-slash" | "bookmark-slash-fill" | "cache" | "check-circle-fill" | "circle-slash" | "clock-fill" | "code-of-conduct" | "code-review" | "code-square" | "codescan" | "codescan-checkmark" | "codespaces" | "command-palette" | "comment-discussion" | "copilot" | "copilot-error" | "copilot-warning" | "cross-reference" | "dependabot" | "desktop-download" | "device-camera" | "device-camera-video" | "device-desktop" | "device-mobile" | "diff-added" | "diff-ignored" | "diff-modified" | "diff-removed" | "diff-renamed" | "discussion-closed" | "discussion-duplicate" | "discussion-outdated" | "dot" | "dot-fill" | "feed-discussion" | "feed-forked" | "feed-heart" | "feed-issue-closed" | "feed-issue-draft" | "feed-issue-open" | "feed-issue-reopen" | "feed-merged" | "feed-person" | "feed-plus" | "feed-public" | "feed-pull-request-closed" | "feed-pull-request-draft" | "feed-pull-request-open" | "feed-repo" | "feed-rocket" | "feed-star" | "feed-tag" | "feed-trophy" | "file-added" | "file-badge" | "file-binary" | "file-diff" | "file-directory" | "file-directory-fill" | "file-directory-open-fill" | "file-directory-symlink" | "file-media" | "file-moved" | "file-removed" | "file-submodule" | "file-symlink-file" | "fiscal-host" | "fold" | "fold-down" | "fold-up" | "git-merge-queue" | "git-pull-request-closed" | "git-pull-request-draft" | "goal" | "grabber" | "heart-fill" | "home-fill" | "hubot" | "issue-closed" | "issue-draft" | "issue-opened" | "issue-reopened" | "issue-tracked-by" | "issue-tracks" | "iterations" | "kebab-horizontal" | "key-asterisk" | "law" | "link-external" | "list-ordered" | "list-unordered" | "log" | "logo-gist" | "mark-github" | "mention" | "milestone" | "move-to-bottom" | "move-to-end" | "move-to-start" | "move-to-top" | "multi-select" | "mute" | "no-entry" | "north-star" | "organization" | "package-dependencies" | "package-dependents" | "paper-airplane" | "passkey-fill" | "person-fill" | "pin-slash" | "pivot-column" | "project-roadmap" | "project-symlink" | "project-template" | "rel-file-path" | "repo" | "repo-clone" | "repo-deleted" | "repo-forked" | "repo-locked" | "repo-pull" | "repo-push" | "repo-template" | "rows" | "screen-full" | "screen-normal" | "share-android" | "shield-slash" | "shield-x" | "sidebar-collapse" | "sidebar-expand" | "single-select" | "skip" | "skip-fill" | "sparkle" | "sparkle-fill" | "sparkles-fill" | "sponsor-tiers" | "square-fill" | "squirrel" | "stack" | "star-fill" | "tab-external" | "tasklist" | "telescope-fill" | "three-bars" | "thumbsdown" | "thumbsup" | "tracked-by-closed-completed" | "tracked-by-closed-not-planned" | "typography" | "unfold" | "unmute" | "unverified" | "versions" | "workflow" | "x-circle-fill", "octicons">;
export default _default;
//# sourceMappingURL=Octicons.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Octicons.d.ts","sourceRoot":"","sources":["../src/Octicons.ts"],"names":[],"mappings":";AAMA,wBAAyD"}

6
node_modules/@expo/vector-icons/build/Octicons.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/Octicons.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/Octicons.json';
export default createIconSet(glyphMap, 'octicons', font);
//# sourceMappingURL=Octicons.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Octicons.js","sourceRoot":"","sources":["../src/Octicons.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,uDAAuD,CAAC;AACzE,OAAO,QAAQ,MAAM,4DAA4D,CAAC;AAElF,eAAe,aAAa,CAAC,QAAQ,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/Octicons.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/Octicons.json';\n\nexport default createIconSet(glyphMap, 'octicons', font);\n"]}

View File

@@ -0,0 +1,3 @@
declare const _default: import("./createIconSet").Icon<"link" | "menu" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "bell" | "bulb" | "calculator" | "calendar" | "camera" | "check" | "close" | "cloud-download" | "cloud-upload" | "compass" | "credit-card" | "dislike" | "exclamation" | "eye" | "fire" | "flag" | "folder" | "heart" | "home" | "hourglass" | "info" | "key" | "like" | "lock" | "login" | "logout" | "minus" | "paper-clip" | "phone" | "picture" | "pie-chart" | "plus" | "printer" | "question" | "reload" | "rocket" | "share-alt" | "star" | "tag" | "trophy" | "user" | "wallet" | "briefcase" | "clock" | "crop" | "cup" | "direction" | "drop" | "game-controller" | "globe" | "grid" | "layers" | "list" | "location-pin" | "lock-open" | "loop" | "magnet" | "map" | "mouse" | "note" | "paper-plane" | "paypal" | "pencil" | "pin" | "share" | "shield" | "shuffle" | "trash" | "chart" | "envelope" | "refresh" | "anchor" | "arrow-down-circle" | "arrow-left-circle" | "arrow-right-circle" | "arrow-up-circle" | "book-open" | "disc" | "film" | "power" | "settings" | "target" | "umbrella" | "volume-1" | "volume-2" | "volume-off" | "ban" | "plane" | "feed" | "wrench" | "microphone" | "support" | "diamond" | "envelope-open" | "directions" | "ghost" | "cursor" | "equalizer" | "puzzle" | "social-behance" | "social-dribbble" | "social-dropbox" | "social-facebook" | "social-github" | "social-instagram" | "social-linkedin" | "social-pinterest" | "social-reddit" | "social-skype" | "social-spotify" | "social-steam" | "social-stumbleupon" | "social-tumblr" | "social-twitter" | "social-youtube" | "bag" | "basket" | "options" | "people" | "speedometer" | "cursor-move" | "graph" | "mustache" | "notebook" | "badge" | "call-end" | "event" | "organization" | "user-female" | "user-follow" | "user-following" | "user-unfollow" | "emotsmile" | "call-in" | "call-out" | "options-vertical" | "screen-smartphone" | "screen-desktop" | "energy" | "chemistry" | "screen-tablet" | "magic-wand" | "graduation" | "eyeglass" | "envelope-letter" | "vector" | "speech" | "present" | "playlist" | "handbag" | "globe-alt" | "folder-alt" | "drawer" | "docs" | "doc" | "bubbles" | "basket-loaded" | "action-undo" | "action-redo" | "frame" | "size-fullscreen" | "size-actual" | "music-tone-alt" | "music-tone" | "earphones-alt" | "earphones" | "control-start" | "control-rewind" | "control-play" | "control-pause" | "control-forward" | "control-end" | "bubble" | "camrecorder" | "magnifier" | "magnifier-add" | "magnifier-remove" | "symbol-female" | "symbol-male" | "social-google" | "social-foursqare" | "social-soundcloud" | "social-vkontakte", "simple-line-icons">;
export default _default;
//# sourceMappingURL=SimpleLineIcons.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"SimpleLineIcons.d.ts","sourceRoot":"","sources":["../src/SimpleLineIcons.ts"],"names":[],"mappings":";AAMA,wBAAkE"}

View File

@@ -0,0 +1,6 @@
'use client';
import createIconSet from './createIconSet';
import font from './vendor/react-native-vector-icons/Fonts/SimpleLineIcons.ttf';
import glyphMap from './vendor/react-native-vector-icons/glyphmaps/SimpleLineIcons.json';
export default createIconSet(glyphMap, 'simple-line-icons', font);
//# sourceMappingURL=SimpleLineIcons.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"SimpleLineIcons.js","sourceRoot":"","sources":["../src/SimpleLineIcons.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,IAAI,MAAM,8DAA8D,CAAC;AAChF,OAAO,QAAQ,MAAM,mEAAmE,CAAC;AAEzF,eAAe,aAAa,CAAC,QAAQ,EAAE,mBAAmB,EAAE,IAAI,CAAC,CAAC","sourcesContent":["'use client';\n\nimport createIconSet from './createIconSet';\nimport font from './vendor/react-native-vector-icons/Fonts/SimpleLineIcons.ttf';\nimport glyphMap from './vendor/react-native-vector-icons/glyphmaps/SimpleLineIcons.json';\n\nexport default createIconSet(glyphMap, 'simple-line-icons', font);\n"]}

3
node_modules/@expo/vector-icons/build/Zocial.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
declare const _default: import("./createIconSet").Icon<"email" | "amazon" | "android" | "appstore" | "chrome" | "dribbble" | "dropbox" | "facebook" | "github" | "google" | "html5" | "ie" | "instagram" | "linkedin" | "pinterest" | "reddit" | "skype" | "spotify" | "twitter" | "weibo" | "windows" | "yahoo" | "youtube" | "evernote" | "flattr" | "flickr" | "foursquare" | "grooveshark" | "lastfm" | "paypal" | "print" | "rss" | "scribd" | "smashing" | "soundcloud" | "stumbleupon" | "tumblr" | "vimeo" | "vk" | "xing" | "yelp" | "cart" | "pocket" | "bitcoin" | "bitbucket" | "wordpress" | "openid" | "delicious" | "digg" | "drupal" | "steam" | "angellist" | "viadeo" | "quora" | "podcast" | "meetup" | "blogger" | "buffer" | "itunes" | "stripe" | "disqus" | "wikipedia" | "pinboard" | "call" | "gmail" | "acrobat" | "aol" | "appnet" | "cal" | "cloudapp" | "creativecommons" | "dwolla" | "eventasaurus" | "eventbrite" | "eventful" | "fivehundredpx" | "forrst" | "googleplay" | "googleplus" | "gowalla" | "guest" | "instapaper" | "intensedebate" | "klout" | "lanyrd" | "lego" | "lkdto" | "logmein" | "macstore" | "myspace" | "ninetyninedesigns" | "opentable" | "persona" | "plancast" | "plurk" | "posterous" | "songkick" | "stackoverflow" | "statusnet" | "ycombinator", "zocial">;
export default _default;
//# sourceMappingURL=Zocial.d.ts.map

Some files were not shown because too many files have changed in this diff Show More