diff options
Diffstat (limited to 'src/lib/icons.tsx')
-rw-r--r-- | src/lib/icons.tsx | 64 |
1 files changed, 8 insertions, 56 deletions
diff --git a/src/lib/icons.tsx b/src/lib/icons.tsx index 233f8a473..fef7be2f3 100644 --- a/src/lib/icons.tsx +++ b/src/lib/icons.tsx @@ -1,6 +1,6 @@ import React from 'react' import {StyleProp, TextStyle, ViewStyle} from 'react-native' -import Svg, {Path, Rect, Line, Ellipse, Circle} from 'react-native-svg' +import Svg, {Path, Rect, Line, Ellipse} from 'react-native-svg' export function GridIcon({ style, @@ -884,45 +884,7 @@ export function HandIcon({ ) } -export function SatelliteDishIconSolid({ - style, - size, - strokeWidth = 1.5, -}: { - style?: StyleProp<ViewStyle> - size?: string | number - strokeWidth?: number -}) { - return ( - <Svg - width={size || 24} - height={size || 24} - viewBox="0 0 22 22" - style={style} - fill="none" - stroke="none"> - <Path - d="M16 19.6622C14.5291 20.513 12.8214 21 11 21C5.47715 21 1 16.5229 1 11C1 9.17858 1.48697 7.47088 2.33782 6.00002C3.18867 4.52915 6 7.66219 6 7.66219L14.5 16.1622C14.5 16.1622 17.4709 18.8113 16 19.6622Z" - fill="currentColor" - /> - <Path - d="M8 1.62961C9.04899 1.22255 10.1847 1 11.3704 1C16.6887 1 21 5.47715 21 11C21 12.0452 20.8456 13.053 20.5592 14" - stroke="currentColor" - strokeWidth={strokeWidth} - strokeLinecap="round" - /> - <Path - d="M9 5.38745C9.64553 5.13695 10.3444 5 11.0741 5C14.3469 5 17 7.75517 17 11.1538C17 11.797 16.905 12.4172 16.7287 13" - stroke="currentColor" - strokeWidth={strokeWidth} - strokeLinecap="round" - /> - <Circle cx="10" cy="12" r="2" fill="currentColor" /> - </Svg> - ) -} - -export function SatelliteDishIcon({ +export function HashtagIcon({ style, size, strokeWidth = 1.5, @@ -934,26 +896,16 @@ export function SatelliteDishIcon({ return ( <Svg fill="none" - viewBox="0 0 22 22" - strokeWidth={strokeWidth} stroke="currentColor" + viewBox="0 0 30 30" + strokeWidth={strokeWidth} width={size} height={size} style={style}> - <Path d="M 12.705346,15.777547 C 14.4635,17.5315 14.7526,17.8509 14.9928,18.1812 c 0.2139,0.2943 0.3371,0.5275 0.3889,0.6822 C 14.0859,19.5872 12.5926,20 11,20 6.02944,20 2,15.9706 2,11 2,9.4151 2.40883,7.9285 3.12619,6.63699 3.304,6.69748 3.56745,6.84213 3.89275,7.08309 4.3705644,7.4380098 4.7486794,7.8160923 6.4999995,9.5689376 8.2513197,11.321783 10.947192,14.023595 12.705346,15.777547 Z" /> - <Path - d="M8 1.62961C9.04899 1.22255 10.1847 1 11.3704 1C16.6887 1 21 5.47715 21 11C21 12.0452 20.8456 13.053 20.5592 14" - strokeLinecap="round" - /> - <Path - d="M9 5.38745C9.64553 5.13695 10.3444 5 11.0741 5C14.3469 5 17 7.75517 17 11.1538C17 11.797 16.905 12.4172 16.7287 13" - strokeLinecap="round" - /> - <Path - d="M12 12C12 12.7403 11.5978 13.3866 11 13.7324L8.26756 11C8.61337 10.4022 9.25972 10 10 10C11.1046 10 12 10.8954 12 12Z" - fill="currentColor" - stroke="none" - /> + <Path d="M2 10H28" strokeLinecap="round" /> + <Path d="M2 20H28" strokeLinecap="round" /> + <Path d="M11 3L9 27" strokeLinecap="round" /> + <Path d="M21 3L19 27" strokeLinecap="round" /> </Svg> ) } |