@kukkim/react-native-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +33 -0
- package/lib/module/assets/icons/arrow-down-to-line.svg +1 -0
- package/lib/module/assets/icons/arrow-down-wide-narrow.svg +1 -0
- package/lib/module/assets/icons/arrow-left.svg +1 -0
- package/lib/module/assets/icons/check.svg +1 -0
- package/lib/module/assets/icons/chevron-down.svg +1 -0
- package/lib/module/assets/icons/copy.svg +1 -0
- package/lib/module/assets/icons/rotate-cw.svg +1 -0
- package/lib/module/assets/icons/square-arrow-out-up-right.svg +1 -0
- package/lib/module/assets/icons/star-empty.svg +1 -0
- package/lib/module/assets/icons/star-full.svg +1 -0
- package/lib/module/assets/icons/star-half.svg +25 -0
- package/lib/module/assets/icons/x.svg +1 -0
- package/lib/module/assets/images/defaultImage.png +0 -0
- package/lib/module/components/avatar/index.js +45 -0
- package/lib/module/components/avatar/index.js.map +1 -0
- package/lib/module/components/avatar/types.js +49 -0
- package/lib/module/components/avatar/types.js.map +1 -0
- package/lib/module/components/badge/commonBadge.js +44 -0
- package/lib/module/components/badge/commonBadge.js.map +1 -0
- package/lib/module/components/badge/index.js +5 -0
- package/lib/module/components/badge/index.js.map +1 -0
- package/lib/module/components/badge/types.js +48 -0
- package/lib/module/components/badge/types.js.map +1 -0
- package/lib/module/components/button/commonButton.js +43 -0
- package/lib/module/components/button/commonButton.js.map +1 -0
- package/lib/module/components/button/index.js +5 -0
- package/lib/module/components/button/index.js.map +1 -0
- package/lib/module/components/button/types.js +28 -0
- package/lib/module/components/button/types.js.map +1 -0
- package/lib/module/components/card/commonCard.js +57 -0
- package/lib/module/components/card/commonCard.js.map +1 -0
- package/lib/module/components/card/foldableCard.js +76 -0
- package/lib/module/components/card/foldableCard.js.map +1 -0
- package/lib/module/components/card/index.js +6 -0
- package/lib/module/components/card/index.js.map +1 -0
- package/lib/module/components/card/types.js +4 -0
- package/lib/module/components/card/types.js.map +1 -0
- package/lib/module/components/checkBox/index.js +38 -0
- package/lib/module/components/checkBox/index.js.map +1 -0
- package/lib/module/components/checkBox/types.js +17 -0
- package/lib/module/components/checkBox/types.js.map +1 -0
- package/lib/module/components/header/commonHeader.js +72 -0
- package/lib/module/components/header/commonHeader.js.map +1 -0
- package/lib/module/components/header/index.js +5 -0
- package/lib/module/components/header/index.js.map +1 -0
- package/lib/module/components/header/types.js +28 -0
- package/lib/module/components/header/types.js.map +1 -0
- package/lib/module/components/icon/ArrowDownToLine.js +25 -0
- package/lib/module/components/icon/ArrowDownToLine.js.map +1 -0
- package/lib/module/components/icon/ArrowDownWideNarrow.js +25 -0
- package/lib/module/components/icon/ArrowDownWideNarrow.js.map +1 -0
- package/lib/module/components/icon/ArrowLeft.js +25 -0
- package/lib/module/components/icon/ArrowLeft.js.map +1 -0
- package/lib/module/components/icon/Check.js +25 -0
- package/lib/module/components/icon/Check.js.map +1 -0
- package/lib/module/components/icon/ChevronDown.js +25 -0
- package/lib/module/components/icon/ChevronDown.js.map +1 -0
- package/lib/module/components/icon/Copy.js +32 -0
- package/lib/module/components/icon/Copy.js.map +1 -0
- package/lib/module/components/icon/RotateCw.js +27 -0
- package/lib/module/components/icon/RotateCw.js.map +1 -0
- package/lib/module/components/icon/SquareArrowOutUpRight.js +25 -0
- package/lib/module/components/icon/SquareArrowOutUpRight.js.map +1 -0
- package/lib/module/components/icon/StarEmpty.js +25 -0
- package/lib/module/components/icon/StarEmpty.js.map +1 -0
- package/lib/module/components/icon/StarFull.js +25 -0
- package/lib/module/components/icon/StarFull.js.map +1 -0
- package/lib/module/components/icon/StarHalf.js +34 -0
- package/lib/module/components/icon/StarHalf.js.map +1 -0
- package/lib/module/components/icon/X.js +25 -0
- package/lib/module/components/icon/X.js.map +1 -0
- package/lib/module/components/icon/index.js +54 -0
- package/lib/module/components/icon/index.js.map +1 -0
- package/lib/module/components/icon/types.js +8 -0
- package/lib/module/components/icon/types.js.map +1 -0
- package/lib/module/components/image/index.js +25 -0
- package/lib/module/components/image/index.js.map +1 -0
- package/lib/module/components/image/types.js +39 -0
- package/lib/module/components/image/types.js.map +1 -0
- package/lib/module/components/index.js +15 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/components/progressBar/circularProgressBar.js +59 -0
- package/lib/module/components/progressBar/circularProgressBar.js.map +1 -0
- package/lib/module/components/progressBar/index.js +7 -0
- package/lib/module/components/progressBar/index.js.map +1 -0
- package/lib/module/components/progressBar/linearProgressBar.js +42 -0
- package/lib/module/components/progressBar/linearProgressBar.js.map +1 -0
- package/lib/module/components/progressBar/types.js +13 -0
- package/lib/module/components/progressBar/types.js.map +1 -0
- package/lib/module/components/rating/index.js +84 -0
- package/lib/module/components/rating/index.js.map +1 -0
- package/lib/module/components/rating/types.js +8 -0
- package/lib/module/components/rating/types.js.map +1 -0
- package/lib/module/components/screenContainer/SafeAreaContainer.js +26 -0
- package/lib/module/components/screenContainer/SafeAreaContainer.js.map +1 -0
- package/lib/module/components/screenContainer/ScrollViewContainer.js +24 -0
- package/lib/module/components/screenContainer/ScrollViewContainer.js.map +1 -0
- package/lib/module/components/screenContainer/index.js +6 -0
- package/lib/module/components/screenContainer/index.js.map +1 -0
- package/lib/module/components/skeleton/index.js +3 -0
- package/lib/module/components/skeleton/index.js.map +1 -0
- package/lib/module/components/skeleton/types.js +2 -0
- package/lib/module/components/skeleton/types.js.map +1 -0
- package/lib/module/components/slider/index.js +3 -0
- package/lib/module/components/slider/index.js.map +1 -0
- package/lib/module/components/slider/types.js +2 -0
- package/lib/module/components/slider/types.js.map +1 -0
- package/lib/module/components/switch/index.js +3 -0
- package/lib/module/components/switch/index.js.map +1 -0
- package/lib/module/components/switch/types.js +2 -0
- package/lib/module/components/switch/types.js.map +1 -0
- package/lib/module/components/text/commonText.js +28 -0
- package/lib/module/components/text/commonText.js.map +1 -0
- package/lib/module/components/text/index.js +5 -0
- package/lib/module/components/text/index.js.map +1 -0
- package/lib/module/components/text/types.js +17 -0
- package/lib/module/components/text/types.js.map +1 -0
- package/lib/module/hooks/useTheme.js +12 -0
- package/lib/module/hooks/useTheme.js.map +1 -0
- package/lib/module/index.js +5 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/theme/color.js +10 -0
- package/lib/module/theme/color.js.map +1 -0
- package/lib/module/theme/style.js +17 -0
- package/lib/module/theme/style.js.map +1 -0
- package/lib/module/theme/themeProvider.js +22 -0
- package/lib/module/theme/themeProvider.js.map +1 -0
- package/lib/module/theme/themes.js +41 -0
- package/lib/module/theme/themes.js.map +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/components/avatar/index.d.ts +3 -0
- package/lib/typescript/src/components/avatar/index.d.ts.map +1 -0
- package/lib/typescript/src/components/avatar/types.d.ts +16 -0
- package/lib/typescript/src/components/avatar/types.d.ts.map +1 -0
- package/lib/typescript/src/components/badge/commonBadge.d.ts +4 -0
- package/lib/typescript/src/components/badge/commonBadge.d.ts.map +1 -0
- package/lib/typescript/src/components/badge/index.d.ts +3 -0
- package/lib/typescript/src/components/badge/index.d.ts.map +1 -0
- package/lib/typescript/src/components/badge/types.d.ts +19 -0
- package/lib/typescript/src/components/badge/types.d.ts.map +1 -0
- package/lib/typescript/src/components/button/commonButton.d.ts +4 -0
- package/lib/typescript/src/components/button/commonButton.d.ts.map +1 -0
- package/lib/typescript/src/components/button/index.d.ts +3 -0
- package/lib/typescript/src/components/button/index.d.ts.map +1 -0
- package/lib/typescript/src/components/button/types.d.ts +14 -0
- package/lib/typescript/src/components/button/types.d.ts.map +1 -0
- package/lib/typescript/src/components/card/commonCard.d.ts +4 -0
- package/lib/typescript/src/components/card/commonCard.d.ts.map +1 -0
- package/lib/typescript/src/components/card/foldableCard.d.ts +4 -0
- package/lib/typescript/src/components/card/foldableCard.d.ts.map +1 -0
- package/lib/typescript/src/components/card/index.d.ts +4 -0
- package/lib/typescript/src/components/card/index.d.ts.map +1 -0
- package/lib/typescript/src/components/card/types.d.ts +16 -0
- package/lib/typescript/src/components/card/types.d.ts.map +1 -0
- package/lib/typescript/src/components/checkBox/index.d.ts +3 -0
- package/lib/typescript/src/components/checkBox/index.d.ts.map +1 -0
- package/lib/typescript/src/components/checkBox/types.d.ts +11 -0
- package/lib/typescript/src/components/checkBox/types.d.ts.map +1 -0
- package/lib/typescript/src/components/header/commonHeader.d.ts +4 -0
- package/lib/typescript/src/components/header/commonHeader.d.ts.map +1 -0
- package/lib/typescript/src/components/header/index.d.ts +3 -0
- package/lib/typescript/src/components/header/index.d.ts.map +1 -0
- package/lib/typescript/src/components/header/types.d.ts +19 -0
- package/lib/typescript/src/components/header/types.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/ArrowDownToLine.d.ts +4 -0
- package/lib/typescript/src/components/icon/ArrowDownToLine.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/ArrowDownWideNarrow.d.ts +4 -0
- package/lib/typescript/src/components/icon/ArrowDownWideNarrow.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/ArrowLeft.d.ts +4 -0
- package/lib/typescript/src/components/icon/ArrowLeft.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/Check.d.ts +4 -0
- package/lib/typescript/src/components/icon/Check.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/ChevronDown.d.ts +4 -0
- package/lib/typescript/src/components/icon/ChevronDown.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/Copy.d.ts +4 -0
- package/lib/typescript/src/components/icon/Copy.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/RotateCw.d.ts +4 -0
- package/lib/typescript/src/components/icon/RotateCw.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/SquareArrowOutUpRight.d.ts +4 -0
- package/lib/typescript/src/components/icon/SquareArrowOutUpRight.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/StarEmpty.d.ts +4 -0
- package/lib/typescript/src/components/icon/StarEmpty.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/StarFull.d.ts +4 -0
- package/lib/typescript/src/components/icon/StarFull.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/StarHalf.d.ts +4 -0
- package/lib/typescript/src/components/icon/StarHalf.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/X.d.ts +4 -0
- package/lib/typescript/src/components/icon/X.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/index.d.ts +3 -0
- package/lib/typescript/src/components/icon/index.d.ts.map +1 -0
- package/lib/typescript/src/components/icon/types.d.ts +12 -0
- package/lib/typescript/src/components/icon/types.d.ts.map +1 -0
- package/lib/typescript/src/components/image/index.d.ts +3 -0
- package/lib/typescript/src/components/image/index.d.ts.map +1 -0
- package/lib/typescript/src/components/image/types.d.ts +9 -0
- package/lib/typescript/src/components/image/types.d.ts.map +1 -0
- package/lib/typescript/src/components/index.d.ts +13 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/components/progressBar/circularProgressBar.d.ts +4 -0
- package/lib/typescript/src/components/progressBar/circularProgressBar.d.ts.map +1 -0
- package/lib/typescript/src/components/progressBar/index.d.ts +4 -0
- package/lib/typescript/src/components/progressBar/index.d.ts.map +1 -0
- package/lib/typescript/src/components/progressBar/linearProgressBar.d.ts +4 -0
- package/lib/typescript/src/components/progressBar/linearProgressBar.d.ts.map +1 -0
- package/lib/typescript/src/components/progressBar/types.d.ts +12 -0
- package/lib/typescript/src/components/progressBar/types.d.ts.map +1 -0
- package/lib/typescript/src/components/rating/index.d.ts +3 -0
- package/lib/typescript/src/components/rating/index.d.ts.map +1 -0
- package/lib/typescript/src/components/rating/types.d.ts +13 -0
- package/lib/typescript/src/components/rating/types.d.ts.map +1 -0
- package/lib/typescript/src/components/screenContainer/SafeAreaContainer.d.ts +4 -0
- package/lib/typescript/src/components/screenContainer/SafeAreaContainer.d.ts.map +1 -0
- package/lib/typescript/src/components/screenContainer/ScrollViewContainer.d.ts +4 -0
- package/lib/typescript/src/components/screenContainer/ScrollViewContainer.d.ts.map +1 -0
- package/lib/typescript/src/components/screenContainer/index.d.ts +4 -0
- package/lib/typescript/src/components/screenContainer/index.d.ts.map +1 -0
- package/lib/typescript/src/components/skeleton/index.d.ts +1 -0
- package/lib/typescript/src/components/skeleton/index.d.ts.map +1 -0
- package/lib/typescript/src/components/skeleton/types.d.ts +1 -0
- package/lib/typescript/src/components/skeleton/types.d.ts.map +1 -0
- package/lib/typescript/src/components/slider/index.d.ts +1 -0
- package/lib/typescript/src/components/slider/index.d.ts.map +1 -0
- package/lib/typescript/src/components/slider/types.d.ts +1 -0
- package/lib/typescript/src/components/slider/types.d.ts.map +1 -0
- package/lib/typescript/src/components/switch/index.d.ts +1 -0
- package/lib/typescript/src/components/switch/index.d.ts.map +1 -0
- package/lib/typescript/src/components/switch/types.d.ts +1 -0
- package/lib/typescript/src/components/switch/types.d.ts.map +1 -0
- package/lib/typescript/src/components/text/commonText.d.ts +4 -0
- package/lib/typescript/src/components/text/commonText.d.ts.map +1 -0
- package/lib/typescript/src/components/text/index.d.ts +3 -0
- package/lib/typescript/src/components/text/index.d.ts.map +1 -0
- package/lib/typescript/src/components/text/types.d.ts +11 -0
- package/lib/typescript/src/components/text/types.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useTheme.d.ts +5 -0
- package/lib/typescript/src/hooks/useTheme.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +3 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/theme/color.d.ts +8 -0
- package/lib/typescript/src/theme/color.d.ts.map +1 -0
- package/lib/typescript/src/theme/style.d.ts +15 -0
- package/lib/typescript/src/theme/style.d.ts.map +1 -0
- package/lib/typescript/src/theme/themeProvider.d.ts +13 -0
- package/lib/typescript/src/theme/themeProvider.d.ts.map +1 -0
- package/lib/typescript/src/theme/themes.d.ts +25 -0
- package/lib/typescript/src/theme/themes.d.ts.map +1 -0
- package/package.json +170 -0
- package/src/assets/icons/arrow-down-to-line.svg +1 -0
- package/src/assets/icons/arrow-down-wide-narrow.svg +1 -0
- package/src/assets/icons/arrow-left.svg +1 -0
- package/src/assets/icons/check.svg +1 -0
- package/src/assets/icons/chevron-down.svg +1 -0
- package/src/assets/icons/copy.svg +1 -0
- package/src/assets/icons/rotate-cw.svg +1 -0
- package/src/assets/icons/square-arrow-out-up-right.svg +1 -0
- package/src/assets/icons/star-empty.svg +1 -0
- package/src/assets/icons/star-full.svg +1 -0
- package/src/assets/icons/star-half.svg +25 -0
- package/src/assets/icons/x.svg +1 -0
- package/src/assets/images/defaultImage.png +0 -0
- package/src/components/avatar/index.tsx +58 -0
- package/src/components/avatar/types.ts +38 -0
- package/src/components/badge/commonBadge.tsx +50 -0
- package/src/components/badge/index.ts +3 -0
- package/src/components/badge/types.ts +36 -0
- package/src/components/button/commonButton.tsx +43 -0
- package/src/components/button/index.ts +3 -0
- package/src/components/button/types.ts +29 -0
- package/src/components/card/commonCard.tsx +67 -0
- package/src/components/card/foldableCard.tsx +88 -0
- package/src/components/card/index.ts +4 -0
- package/src/components/card/types.ts +18 -0
- package/src/components/checkBox/index.tsx +41 -0
- package/src/components/checkBox/types.ts +16 -0
- package/src/components/header/commonHeader.tsx +55 -0
- package/src/components/header/index.ts +3 -0
- package/src/components/header/types.ts +30 -0
- package/src/components/icon/ArrowDownToLine.tsx +21 -0
- package/src/components/icon/ArrowDownWideNarrow.tsx +21 -0
- package/src/components/icon/ArrowLeft.tsx +21 -0
- package/src/components/icon/Check.tsx +21 -0
- package/src/components/icon/ChevronDown.tsx +21 -0
- package/src/components/icon/Copy.tsx +22 -0
- package/src/components/icon/RotateCw.tsx +22 -0
- package/src/components/icon/SquareArrowOutUpRight.tsx +21 -0
- package/src/components/icon/StarEmpty.tsx +21 -0
- package/src/components/icon/StarFull.tsx +21 -0
- package/src/components/icon/StarHalf.tsx +32 -0
- package/src/components/icon/X.tsx +21 -0
- package/src/components/icon/index.tsx +54 -0
- package/src/components/icon/types.ts +30 -0
- package/src/components/image/index.tsx +21 -0
- package/src/components/image/types.ts +20 -0
- package/src/components/index.ts +12 -0
- package/src/components/progressBar/circularProgressBar.tsx +64 -0
- package/src/components/progressBar/index.ts +5 -0
- package/src/components/progressBar/linearProgressBar.tsx +51 -0
- package/src/components/progressBar/types.ts +22 -0
- package/src/components/rating/index.tsx +106 -0
- package/src/components/rating/types.ts +17 -0
- package/src/components/screenContainer/SafeAreaContainer.tsx +22 -0
- package/src/components/screenContainer/ScrollViewContainer.tsx +19 -0
- package/src/components/screenContainer/index.ts +4 -0
- package/src/components/skeleton/index.tsx +1 -0
- package/src/components/skeleton/types.ts +0 -0
- package/src/components/slider/index.tsx +1 -0
- package/src/components/slider/types.ts +0 -0
- package/src/components/switch/index.tsx +1 -0
- package/src/components/switch/types.ts +0 -0
- package/src/components/text/commonText.tsx +27 -0
- package/src/components/text/index.ts +3 -0
- package/src/components/text/types.ts +16 -0
- package/src/hooks/useTheme.ts +12 -0
- package/src/index.tsx +18 -0
- package/src/theme/color.ts +7 -0
- package/src/theme/style.ts +15 -0
- package/src/theme/themeProvider.tsx +25 -0
- package/src/theme/themes.ts +71 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Pressable","StyleSheet","sizeType","useTheme","CommonIcon","jsx","_jsx","CheckBox","size","disabled","value","onPress","props","theme","style","styles","container","borderColor","colors","primary","children","color","iconType","create","borderWidth"],"sourceRoot":"../../../../src","sources":["components/checkBox/index.tsx"],"mappings":";;AAAA,SAASA,SAAS,EAAEC,UAAU,QAAQ,cAAc;AACpD,SAA6BC,QAAQ,QAAQ,YAAS;AACtD,SAASC,QAAQ,QAAQ,yBAAsB;AAC/C,SAASC,UAAU,QAAQ,kBAAS;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAErC,OAAO,MAAMC,QAAQ,GAAGA,CAAC;EACvBC,IAAI,GAAG,GAAG;EACVC,QAAQ;EACRC,KAAK;EACLC,OAAO;EACP,GAAGC;AACU,CAAC,KAAK;EACnB,MAAM;IAAEC;EAAM,CAAC,GAAGV,QAAQ,CAAC,CAAC;EAC5B,oBACEG,IAAA,CAACN,SAAS;IACRW,OAAO,EAAEA,OAAQ;IACjBG,KAAK,EAAE,CACLZ,QAAQ,CAACM,IAAI,CAAC,EACdO,MAAM,CAACC,SAAS,EAChBP,QAAQ,GACJ;MAAEQ,WAAW,EAAEJ,KAAK,CAACK,MAAM,CAACT;IAAS,CAAC,GACtC;MAAEQ,WAAW,EAAEJ,KAAK,CAACK,MAAM,CAACC;IAAQ,CAAC,CACzC;IACFV,QAAQ,EAAEA,QAAS;IAAA,GACfG,KAAK;IAAAQ,QAAA,EAERV,KAAK,iBACJJ,IAAA,CAACF,UAAU;MACTiB,KAAK,EAAEZ,QAAQ,GAAGI,KAAK,CAACK,MAAM,CAACT,QAAQ,GAAGI,KAAK,CAACK,MAAM,CAACC,OAAQ;MAC/DG,QAAQ,EAAC;IAAO,CACjB;EACF,CACQ,CAAC;AAEhB,CAAC;AAED,MAAMP,MAAM,GAAGd,UAAU,CAACsB,MAAM,CAAC;EAC/BP,SAAS,EAAE;IACTQ,WAAW,EAAE;EACf;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["sizeType","s","width","height","m","l"],"sourceRoot":"../../../../src","sources":["components/checkBox/types.ts"],"mappings":";;AAKA,OAAO,MAAMA,QAAwC,GAAG;EACtDC,CAAC,EAAE;IAAEC,KAAK,EAAE,EAAE;IAAEC,MAAM,EAAE;EAAG,CAAC;EAC5BC,CAAC,EAAE;IAAEF,KAAK,EAAE,EAAE;IAAEC,MAAM,EAAE;EAAG,CAAC;EAC5BE,CAAC,EAAE;IAAEH,KAAK,EAAE,EAAE;IAAEC,MAAM,EAAE;EAAG;AAC7B,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { StyleSheet, View, Pressable } from 'react-native';
|
|
4
|
+
import { CommonText } from "../text/index.js";
|
|
5
|
+
import { CommonIcon } from "../icon/index.js";
|
|
6
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
7
|
+
const CommonHeader = ({
|
|
8
|
+
title,
|
|
9
|
+
left,
|
|
10
|
+
right,
|
|
11
|
+
style,
|
|
12
|
+
...props
|
|
13
|
+
}) => {
|
|
14
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
15
|
+
style: [styles.container, styles.flexRow, style],
|
|
16
|
+
...props,
|
|
17
|
+
children: [/*#__PURE__*/_jsx(View, {
|
|
18
|
+
style: styles.center,
|
|
19
|
+
pointerEvents: "none",
|
|
20
|
+
children: /*#__PURE__*/_jsx(CommonText, {
|
|
21
|
+
size: "m",
|
|
22
|
+
numberOfLines: 1,
|
|
23
|
+
children: title
|
|
24
|
+
})
|
|
25
|
+
}), /*#__PURE__*/_jsxs(Pressable, {
|
|
26
|
+
style: [styles.flexRow, styles.side],
|
|
27
|
+
onPress: left?.onPress,
|
|
28
|
+
children: [left?.icon ? /*#__PURE__*/_jsx(CommonIcon, {
|
|
29
|
+
iconType: left.icon
|
|
30
|
+
}) : null, /*#__PURE__*/_jsx(CommonText, {
|
|
31
|
+
size: "m",
|
|
32
|
+
children: left?.title
|
|
33
|
+
})]
|
|
34
|
+
}), /*#__PURE__*/_jsxs(Pressable, {
|
|
35
|
+
style: [styles.flexRow, styles.side, styles.right],
|
|
36
|
+
onPress: right?.onPress,
|
|
37
|
+
children: [/*#__PURE__*/_jsx(CommonText, {
|
|
38
|
+
size: "m",
|
|
39
|
+
children: right?.title
|
|
40
|
+
}), right?.icon ? /*#__PURE__*/_jsx(CommonIcon, {
|
|
41
|
+
iconType: right.icon
|
|
42
|
+
}) : null]
|
|
43
|
+
})]
|
|
44
|
+
});
|
|
45
|
+
};
|
|
46
|
+
const styles = StyleSheet.create({
|
|
47
|
+
container: {
|
|
48
|
+
height: 56,
|
|
49
|
+
paddingHorizontal: 8,
|
|
50
|
+
gap: 10
|
|
51
|
+
},
|
|
52
|
+
center: {
|
|
53
|
+
position: 'absolute',
|
|
54
|
+
left: 0,
|
|
55
|
+
right: 0,
|
|
56
|
+
alignItems: 'center',
|
|
57
|
+
justifyContent: 'center'
|
|
58
|
+
},
|
|
59
|
+
side: {
|
|
60
|
+
flex: 1,
|
|
61
|
+
gap: 5
|
|
62
|
+
},
|
|
63
|
+
right: {
|
|
64
|
+
justifyContent: 'flex-end'
|
|
65
|
+
},
|
|
66
|
+
flexRow: {
|
|
67
|
+
flexDirection: 'row',
|
|
68
|
+
alignItems: 'center'
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
export default CommonHeader;
|
|
72
|
+
//# sourceMappingURL=commonHeader.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["StyleSheet","View","Pressable","CommonText","CommonIcon","jsx","_jsx","jsxs","_jsxs","CommonHeader","title","left","right","style","props","styles","container","flexRow","children","center","pointerEvents","size","numberOfLines","side","onPress","icon","iconType","create","height","paddingHorizontal","gap","position","alignItems","justifyContent","flex","flexDirection"],"sourceRoot":"../../../../src","sources":["components/header/commonHeader.tsx"],"mappings":";;AAAA,SAASA,UAAU,EAAEC,IAAI,EAAEC,SAAS,QAAQ,cAAc;AAC1D,SAASC,UAAU,QAAQ,kBAAS;AAEpC,SAASC,UAAU,QAAQ,kBAAS;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAErC,MAAMC,YAAY,GAAGA,CAAC;EAAEC,KAAK;EAAEC,IAAI;EAAEC,KAAK;EAAEC,KAAK;EAAE,GAAGC;AAAmB,CAAC,KAAK;EAC7E,oBACEN,KAAA,CAACP,IAAI;IAACY,KAAK,EAAE,CAACE,MAAM,CAACC,SAAS,EAAED,MAAM,CAACE,OAAO,EAAEJ,KAAK,CAAE;IAAA,GAAKC,KAAK;IAAAI,QAAA,gBAC/DZ,IAAA,CAACL,IAAI;MAACY,KAAK,EAAEE,MAAM,CAACI,MAAO;MAACC,aAAa,EAAC,MAAM;MAAAF,QAAA,eAC9CZ,IAAA,CAACH,UAAU;QAACkB,IAAI,EAAC,GAAG;QAACC,aAAa,EAAE,CAAE;QAAAJ,QAAA,EACnCR;MAAK,CACI;IAAC,CACT,CAAC,eACPF,KAAA,CAACN,SAAS;MAACW,KAAK,EAAE,CAACE,MAAM,CAACE,OAAO,EAAEF,MAAM,CAACQ,IAAI,CAAE;MAACC,OAAO,EAAEb,IAAI,EAAEa,OAAQ;MAAAN,QAAA,GACrEP,IAAI,EAAEc,IAAI,gBAAGnB,IAAA,CAACF,UAAU;QAACsB,QAAQ,EAAEf,IAAI,CAACc;MAAK,CAAE,CAAC,GAAG,IAAI,eACxDnB,IAAA,CAACH,UAAU;QAACkB,IAAI,EAAC,GAAG;QAAAH,QAAA,EAAEP,IAAI,EAAED;MAAK,CAAa,CAAC;IAAA,CACtC,CAAC,eACZF,KAAA,CAACN,SAAS;MACRW,KAAK,EAAE,CAACE,MAAM,CAACE,OAAO,EAAEF,MAAM,CAACQ,IAAI,EAAER,MAAM,CAACH,KAAK,CAAE;MACnDY,OAAO,EAAEZ,KAAK,EAAEY,OAAQ;MAAAN,QAAA,gBAExBZ,IAAA,CAACH,UAAU;QAACkB,IAAI,EAAC,GAAG;QAAAH,QAAA,EAAEN,KAAK,EAAEF;MAAK,CAAa,CAAC,EAC/CE,KAAK,EAAEa,IAAI,gBAAGnB,IAAA,CAACF,UAAU;QAACsB,QAAQ,EAAEd,KAAK,CAACa;MAAK,CAAE,CAAC,GAAG,IAAI;IAAA,CACjD,CAAC;EAAA,CACR,CAAC;AAEX,CAAC;AAED,MAAMV,MAAM,GAAGf,UAAU,CAAC2B,MAAM,CAAC;EAC/BX,SAAS,EAAE;IACTY,MAAM,EAAE,EAAE;IACVC,iBAAiB,EAAE,CAAC;IACpBC,GAAG,EAAE;EACP,CAAC;EACDX,MAAM,EAAE;IACNY,QAAQ,EAAE,UAAU;IACpBpB,IAAI,EAAE,CAAC;IACPC,KAAK,EAAE,CAAC;IACRoB,UAAU,EAAE,QAAQ;IACpBC,cAAc,EAAE;EAClB,CAAC;EACDV,IAAI,EAAE;IACJW,IAAI,EAAE,CAAC;IACPJ,GAAG,EAAE;EACP,CAAC;EACDlB,KAAK,EAAE;IACLqB,cAAc,EAAE;EAClB,CAAC;EACDhB,OAAO,EAAE;IACPkB,aAAa,EAAE,KAAK;IACpBH,UAAU,EAAE;EACd;AACF,CAAC,CAAC;AAEF,eAAevB,YAAY","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["CommonHeader"],"sourceRoot":"../../../../src","sources":["components/header/index.ts"],"mappings":";;AAAA,OAAOA,YAAY,MAAM,mBAAgB;AAEzC,SAASA,YAAY","ignoreList":[]}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
export const sizeType = {
|
|
4
|
+
s: {
|
|
5
|
+
width: 16,
|
|
6
|
+
height: 16
|
|
7
|
+
},
|
|
8
|
+
m: {
|
|
9
|
+
width: 20,
|
|
10
|
+
height: 20
|
|
11
|
+
},
|
|
12
|
+
l: {
|
|
13
|
+
width: 24,
|
|
14
|
+
height: 24
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export const fontSizeType = {
|
|
18
|
+
s: {
|
|
19
|
+
fontSize: 10
|
|
20
|
+
},
|
|
21
|
+
m: {
|
|
22
|
+
fontSize: 12
|
|
23
|
+
},
|
|
24
|
+
l: {
|
|
25
|
+
fontSize: 14
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["sizeType","s","width","height","m","l","fontSizeType","fontSize"],"sourceRoot":"../../../../src","sources":["components/header/types.ts"],"mappings":";;AAKA,OAAO,MAAMA,QAAwC,GAAG;EACtDC,CAAC,EAAE;IAAEC,KAAK,EAAE,EAAE;IAAEC,MAAM,EAAE;EAAG,CAAC;EAC5BC,CAAC,EAAE;IAAEF,KAAK,EAAE,EAAE;IAAEC,MAAM,EAAE;EAAG,CAAC;EAC5BE,CAAC,EAAE;IAAEH,KAAK,EAAE,EAAE;IAAEC,MAAM,EAAE;EAAG;AAC7B,CAAC;AAED,OAAO,MAAMG,YAA4C,GAAG;EAC1DL,CAAC,EAAE;IAAEM,QAAQ,EAAE;EAAG,CAAC;EACnBH,CAAC,EAAE;IAAEG,QAAQ,EAAE;EAAG,CAAC;EACnBF,CAAC,EAAE;IAAEE,QAAQ,EAAE;EAAG;AACpB,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgArrowDownToLine = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="arrow-down-to-line_svg__lucide arrow-down-to-line_svg__lucide-arrow-down-to-line-icon arrow-down-to-line_svg__lucide-arrow-down-to-line"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "M12 17V3M6 11l6 6 6-6M19 21H5"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgArrowDownToLine;
|
|
25
|
+
//# sourceMappingURL=ArrowDownToLine.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgArrowDownToLine","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/ArrowDownToLine.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,kBAAkB,GAAIC,KAAe,iBACzCF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAA+B,CAAE;AAAC,CACvC,CACN;AACD,eAAeZ,kBAAkB","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgArrowDownWideNarrow = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="arrow-down-wide-narrow_svg__lucide arrow-down-wide-narrow_svg__lucide-arrow-down-wide-narrow-icon arrow-down-wide-narrow_svg__lucide-arrow-down-wide-narrow"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "m3 16 4 4 4-4M7 20V4M11 4h10M11 8h7M11 12h4"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgArrowDownWideNarrow;
|
|
25
|
+
//# sourceMappingURL=ArrowDownWideNarrow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgArrowDownWideNarrow","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/ArrowDownWideNarrow.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,sBAAsB,GAAIC,KAAe,iBAC7CF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAA6C,CAAE;AAAC,CACrD,CACN;AACD,eAAeZ,sBAAsB","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgArrowLeft = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="arrow-left_svg__lucide arrow-left_svg__lucide-arrow-left-icon arrow-left_svg__lucide-arrow-left"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "m12 19-7-7 7-7M19 12H5"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgArrowLeft;
|
|
25
|
+
//# sourceMappingURL=ArrowLeft.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgArrowLeft","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/ArrowLeft.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,YAAY,GAAIC,KAAe,iBACnCF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAAwB,CAAE;AAAC,CAChC,CACN;AACD,eAAeZ,YAAY","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgCheck = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="check_svg__lucide check_svg__lucide-check-icon check_svg__lucide-check"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "M20 6 9 17l-5-5"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgCheck;
|
|
25
|
+
//# sourceMappingURL=Check.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgCheck","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/Check.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,QAAQ,GAAIC,KAAe,iBAC/BF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAAiB,CAAE;AAAC,CACzB,CACN;AACD,eAAeZ,QAAQ","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgChevronDown = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="chevron-down_svg__lucide chevron-down_svg__lucide-chevron-down-icon chevron-down_svg__lucide-chevron-down"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "m6 9 6 6 6-6"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgChevronDown;
|
|
25
|
+
//# sourceMappingURL=ChevronDown.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgChevronDown","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/ChevronDown.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,cAAc,GAAIC,KAAe,iBACrCF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAAc,CAAE;AAAC,CACtB,CACN;AACD,eAAeZ,cAAc","ignoreList":[]}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Rect, Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
+
const SvgCopy = props => /*#__PURE__*/_jsxs(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="copy_svg__lucide copy_svg__lucide-copy-icon copy_svg__lucide-copy"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: [/*#__PURE__*/_jsx(Rect, {
|
|
21
|
+
width: 14,
|
|
22
|
+
height: 14,
|
|
23
|
+
x: 8,
|
|
24
|
+
y: 8,
|
|
25
|
+
rx: 2,
|
|
26
|
+
ry: 2
|
|
27
|
+
}), /*#__PURE__*/_jsx(Path, {
|
|
28
|
+
d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"
|
|
29
|
+
})]
|
|
30
|
+
});
|
|
31
|
+
export default SvgCopy;
|
|
32
|
+
//# sourceMappingURL=Copy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Rect","Path","jsx","_jsx","jsxs","_jsxs","SvgCopy","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","x","y","rx","ry","d"],"sourceRoot":"../../../../src","sources":["components/icon/Copy.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,EAAEC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAEnD,MAAMC,OAAO,GAAIC,KAAe,iBAC9BF,KAAA,CAACN;AACC;AAAA;EACAS,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,gBAETd,IAAA,CAACH,IAAI;IAACe,KAAK,EAAE,EAAG;IAACC,MAAM,EAAE,EAAG;IAACE,CAAC,EAAE,CAAE;IAACC,CAAC,EAAE,CAAE;IAACC,EAAE,EAAE,CAAE;IAACC,EAAE,EAAE;EAAE,CAAE,CAAC,eACzDlB,IAAA,CAACF,IAAI;IAACqB,CAAC,EAAC;EAAyD,CAAE,CAAC;AAAA,CACjE,CACN;AACD,eAAehB,OAAO","ignoreList":[]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
+
const SvgRotateCw = props => /*#__PURE__*/_jsxs(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="rotate-cw_svg__lucide rotate-cw_svg__lucide-rotate-cw-icon rotate-cw_svg__lucide-rotate-cw"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: [/*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"
|
|
22
|
+
}), /*#__PURE__*/_jsx(Path, {
|
|
23
|
+
d: "M21 3v5h-5"
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
export default SvgRotateCw;
|
|
27
|
+
//# sourceMappingURL=RotateCw.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","jsxs","_jsxs","SvgRotateCw","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/RotateCw.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE7C,MAAMC,WAAW,GAAIC,KAAe,iBAClCF,KAAA,CAACL;AACC;AAAA;EACAQ,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,gBAETd,IAAA,CAACF,IAAI;IAACiB,CAAC,EAAC;EAAmD,CAAE,CAAC,eAC9Df,IAAA,CAACF,IAAI;IAACiB,CAAC,EAAC;EAAY,CAAE,CAAC;AAAA,CACpB,CACN;AACD,eAAeZ,WAAW","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgSquareArrowOutUpRight = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="square-arrow-out-up-right_svg__lucide square-arrow-out-up-right_svg__lucide-square-arrow-out-up-right-icon square-arrow-out-up-right_svg__lucide-square-arrow-out-up-right"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6M21 3l-9 9M15 3h6v6"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgSquareArrowOutUpRight;
|
|
25
|
+
//# sourceMappingURL=SquareArrowOutUpRight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgSquareArrowOutUpRight","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/SquareArrowOutUpRight.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,wBAAwB,GAAIC,KAAe,iBAC/CF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAA6E,CAAE;AAAC,CACrF,CACN;AACD,eAAeZ,wBAAwB","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgStarEmpty = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="star-empty_svg__lucide star-empty_svg__lucide-star-icon star-empty_svg__lucide-star"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.12 2.12 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.12 2.12 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.12 2.12 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16z"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgStarEmpty;
|
|
25
|
+
//# sourceMappingURL=StarEmpty.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgStarEmpty","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/StarEmpty.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,YAAY,GAAIC,KAAe,iBACnCF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAAoW,CAAE;AAAC,CAC5W,CACN;AACD,eAAeZ,YAAY","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgStarFull = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: props.color,
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="star-full_svg__lucide star-full_svg__lucide-star-icon star-full_svg__lucide-star"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.12 2.12 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.12 2.12 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.12 2.12 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16z"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgStarFull;
|
|
25
|
+
//# sourceMappingURL=StarFull.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgStarFull","props","fill","color","stroke","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/StarFull.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,WAAW,GAAIC,KAAe,iBAClCF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAED,KAAK,CAACE,KAAM;EAClBC,MAAM,EAAEH,KAAK,CAACE,KAAM;EACpBE,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAAoW,CAAE;AAAC,CAC5W,CACN;AACD,eAAeZ,WAAW","ignoreList":[]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Defs, ClipPath, Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
+
const SvgStarHalf = props => /*#__PURE__*/_jsxs(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
width: props.width ?? 24,
|
|
11
|
+
height: props.height ?? 24,
|
|
12
|
+
...props,
|
|
13
|
+
children: [/*#__PURE__*/_jsx(Defs, {
|
|
14
|
+
children: /*#__PURE__*/_jsx(ClipPath, {
|
|
15
|
+
id: "star-half_svg__a",
|
|
16
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
17
|
+
d: "M0 0h12v24H0z"
|
|
18
|
+
})
|
|
19
|
+
})
|
|
20
|
+
}), /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
fill: props.color,
|
|
22
|
+
d: "m12 2.5 2.93 5.94 6.56.96-4.75 4.63 1.12 6.53L12 17.5l-5.86 3.06 1.12-6.53L2.51 9.4l6.56-.96z",
|
|
23
|
+
clipPath: "url(#star-half_svg__a)"
|
|
24
|
+
}), /*#__PURE__*/_jsx(Path, {
|
|
25
|
+
fill: "none",
|
|
26
|
+
stroke: props.color,
|
|
27
|
+
strokeLinecap: "round",
|
|
28
|
+
strokeLinejoin: "round",
|
|
29
|
+
strokeWidth: 2,
|
|
30
|
+
d: "m12 2.5 2.93 5.94 6.56.96-4.75 4.63 1.12 6.53L12 17.5l-5.86 3.06 1.12-6.53L2.51 9.4l6.56-.96z"
|
|
31
|
+
})]
|
|
32
|
+
});
|
|
33
|
+
export default SvgStarHalf;
|
|
34
|
+
//# sourceMappingURL=StarHalf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Defs","ClipPath","Path","jsx","_jsx","jsxs","_jsxs","SvgStarHalf","props","viewBox","width","height","children","id","d","fill","color","clipPath","stroke","strokeLinecap","strokeLinejoin","strokeWidth"],"sourceRoot":"../../../../src","sources":["components/icon/StarHalf.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,EAAEC,QAAQ,EAAEC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE7D,MAAMC,WAAW,GAAIC,KAAe,iBAClCF,KAAA,CAACP;AACC;AAAA;EACAU,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAEF,KAAK,CAACE,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAEH,KAAK,CAACG,MAAM,IAAI,EAAG;EAAA,GACvBH,KAAK;EAAAI,QAAA,gBAETR,IAAA,CAACJ,IAAI;IAAAY,QAAA,eACHR,IAAA,CAACH,QAAQ;MAACY,EAAE,EAAC,kBAAkB;MAAAD,QAAA,eAC7BR,IAAA,CAACF,IAAI;QAACY,CAAC,EAAC;MAAe,CAAE;IAAC,CAClB;EAAC,CACP,CAAC,eACPV,IAAA,CAACF,IAAI;IACHa,IAAI,EAAEP,KAAK,CAACQ,KAAM;IAClBF,CAAC,EAAC,+FAA+F;IACjGG,QAAQ,EAAC;EAAwB,CAClC,CAAC,eACFb,IAAA,CAACF,IAAI;IACHa,IAAI,EAAC,MAAM;IACXG,MAAM,EAAEV,KAAK,CAACQ,KAAM;IACpBG,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBC,WAAW,EAAE,CAAE;IACfP,CAAC,EAAC;EAA+F,CAClG,CAAC;AAAA,CACC,CACN;AACD,eAAeP,WAAW","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import * as React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
const SvgX = props => /*#__PURE__*/_jsx(Svg
|
|
7
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
, {
|
|
9
|
+
fill: "none",
|
|
10
|
+
stroke: props.color,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 2
|
|
14
|
+
// className="x_svg__lucide x_svg__lucide-x-icon x_svg__lucide-x"
|
|
15
|
+
,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: props.width ?? 24,
|
|
18
|
+
height: props.height ?? 24,
|
|
19
|
+
...props,
|
|
20
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
21
|
+
d: "M18 6 6 18M6 6l12 12"
|
|
22
|
+
})
|
|
23
|
+
});
|
|
24
|
+
export default SvgX;
|
|
25
|
+
//# sourceMappingURL=X.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Svg","Path","jsx","_jsx","SvgX","props","fill","stroke","color","strokeLinecap","strokeLinejoin","strokeWidth","viewBox","width","height","children","d"],"sourceRoot":"../../../../src","sources":["components/icon/X.tsx"],"mappings":";;AAAA;AACA,OAAOA,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE7C,MAAMC,IAAI,GAAIC,KAAe,iBAC3BF,IAAA,CAACH;AACC;AAAA;EACAM,IAAI,EAAC,MAAM;EACXC,MAAM,EAAEF,KAAK,CAACG,KAAM;EACpBC,aAAa,EAAC,OAAO;EACrBC,cAAc,EAAC,OAAO;EACtBC,WAAW,EAAE;EACb;EAAA;EACAC,OAAO,EAAC,WAAW;EACnBC,KAAK,EAAER,KAAK,CAACQ,KAAK,IAAI,EAAG;EACzBC,MAAM,EAAET,KAAK,CAACS,MAAM,IAAI,EAAG;EAAA,GACvBT,KAAK;EAAAU,QAAA,eAETZ,IAAA,CAACF,IAAI;IAACe,CAAC,EAAC;EAAsB,CAAE;AAAC,CAC9B,CACN;AACD,eAAeZ,IAAI","ignoreList":[]}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { StyleSheet, View } from 'react-native';
|
|
4
|
+
import { sizeType } from "./types.js";
|
|
5
|
+
// import { useTheme } from '../../hooks/useTheme';
|
|
6
|
+
import ArrowLeft from "./ArrowLeft.js";
|
|
7
|
+
import StarEmpty from "./StarEmpty.js";
|
|
8
|
+
import StarHalf from "./StarHalf.js";
|
|
9
|
+
import StarFull from "./StarFull.js";
|
|
10
|
+
import Check from "./Check.js";
|
|
11
|
+
import X from "./X.js";
|
|
12
|
+
// import { ArrowDownToLine } from './ArrowDownToLine';
|
|
13
|
+
// import { ArrowDownWideNarrow } from './ArrowDownWideNarrow';
|
|
14
|
+
// import { ChevronDown } from './ChevronDown';
|
|
15
|
+
// import { RotateCw } from './RotateCw';
|
|
16
|
+
// export { SquareArrowOutUpRight } from './SquareArrowOutUpRight';
|
|
17
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
18
|
+
const iconMap = {
|
|
19
|
+
back: ArrowLeft,
|
|
20
|
+
star_empty: StarEmpty,
|
|
21
|
+
star_half: StarHalf,
|
|
22
|
+
star_full: StarFull,
|
|
23
|
+
check: Check,
|
|
24
|
+
close: X
|
|
25
|
+
};
|
|
26
|
+
export const CommonIcon = ({
|
|
27
|
+
iconType,
|
|
28
|
+
size = 'm',
|
|
29
|
+
color = 'black',
|
|
30
|
+
...props
|
|
31
|
+
}) => {
|
|
32
|
+
// const { theme } = useTheme();
|
|
33
|
+
|
|
34
|
+
const IconComponent = iconMap[iconType];
|
|
35
|
+
if (!IconComponent) {
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
return /*#__PURE__*/_jsx(View, {
|
|
39
|
+
style: styles.container,
|
|
40
|
+
...props,
|
|
41
|
+
children: /*#__PURE__*/_jsx(IconComponent, {
|
|
42
|
+
width: sizeType[size],
|
|
43
|
+
height: sizeType[size],
|
|
44
|
+
color: color
|
|
45
|
+
})
|
|
46
|
+
});
|
|
47
|
+
};
|
|
48
|
+
const styles = StyleSheet.create({
|
|
49
|
+
container: {
|
|
50
|
+
// margin: 5,
|
|
51
|
+
// padding: 5,
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["StyleSheet","View","sizeType","ArrowLeft","StarEmpty","StarHalf","StarFull","Check","X","jsx","_jsx","iconMap","back","star_empty","star_half","star_full","check","close","CommonIcon","iconType","size","color","props","IconComponent","style","styles","container","children","width","height","create"],"sourceRoot":"../../../../src","sources":["components/icon/index.tsx"],"mappings":";;AAAA,SAASA,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAC/C,SAAyBC,QAAQ,QAAQ,YAAS;AAClD;AACA,OAAOC,SAAS,MAAM,gBAAa;AACnC,OAAOC,SAAS,MAAM,gBAAa;AACnC,OAAOC,QAAQ,MAAM,eAAY;AACjC,OAAOC,QAAQ,MAAM,eAAY;AACjC,OAAOC,KAAK,MAAM,YAAS;AAC3B,OAAOC,CAAC,MAAM,QAAK;AACnB;AACA;AACA;AACA;AACA;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAEA,MAAMC,OAAO,GAAG;EACdC,IAAI,EAAET,SAAS;EACfU,UAAU,EAAET,SAAS;EACrBU,SAAS,EAAET,QAAQ;EACnBU,SAAS,EAAET,QAAQ;EACnBU,KAAK,EAAET,KAAK;EACZU,KAAK,EAAET;AACT,CAAU;AAEV,OAAO,MAAMU,UAAU,GAAGA,CAAC;EACzBC,QAAQ;EACRC,IAAI,GAAG,GAAG;EACVC,KAAK,GAAG,OAAO;EACf,GAAGC;AACM,CAAC,KAAK;EACf;;EAEA,MAAMC,aAAa,GAAGZ,OAAO,CAACQ,QAAQ,CAAC;EACvC,IAAI,CAACI,aAAa,EAAE;IAClB,OAAO,IAAI;EACb;EAEA,oBACEb,IAAA,CAACT,IAAI;IAACuB,KAAK,EAAEC,MAAM,CAACC,SAAU;IAAA,GAAKJ,KAAK;IAAAK,QAAA,eACtCjB,IAAA,CAACa,aAAa;MACZK,KAAK,EAAE1B,QAAQ,CAACkB,IAAI,CAAE;MACtBS,MAAM,EAAE3B,QAAQ,CAACkB,IAAI,CAAE;MACvBC,KAAK,EAAEA;IAAM,CACd;EAAC,CACE,CAAC;AAEX,CAAC;AAED,MAAMI,MAAM,GAAGzB,UAAU,CAAC8B,MAAM,CAAC;EAC/BJ,SAAS,EAAE;IACT;IACA;EAAA;AAEJ,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["sizeType","s","m","l"],"sourceRoot":"../../../../src","sources":["components/icon/types.ts"],"mappings":";;AAKA,OAAO,MAAMA,QAAqC,GAAG;EACnDC,CAAC,EAAE,EAAE;EACLC,CAAC,EAAE,EAAE;EACLC,CAAC,EAAE;AACL,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// import { useState } from 'react';
|
|
4
|
+
import { Image, StyleSheet } from 'react-native';
|
|
5
|
+
import { sizeType } from "./types.js";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
export const CommonImage = ({
|
|
8
|
+
size = 'm',
|
|
9
|
+
...props
|
|
10
|
+
}) => {
|
|
11
|
+
// const [loading, setLoading] = useState(true);
|
|
12
|
+
return /*#__PURE__*/_jsx(Image, {
|
|
13
|
+
style: [styles.container, sizeType[size]],
|
|
14
|
+
source: require('../../assets/images/defaultImage.png')
|
|
15
|
+
// onLoad={({ nativeEvent }) => {
|
|
16
|
+
// setLoading(false);
|
|
17
|
+
// }}
|
|
18
|
+
,
|
|
19
|
+
...props
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
const styles = StyleSheet.create({
|
|
23
|
+
container: {}
|
|
24
|
+
});
|
|
25
|
+
//# sourceMappingURL=index.js.map
|