-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add hand-raised icon. * Add android & ios files.
- Loading branch information
Showing
21 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24"> | ||
<path | ||
android:fillColor="#FF1B1D22" | ||
android:pathData="M11 3c0-0.55 0.45-1 1-1s1 0.45 1 1v8.5c0 0.28 0.22 0.5 0.5 0.5s0.5-0.22 0.5-0.5V4c0-0.55 0.45-1 1-1s1 0.45 1 1v10.2l3.28-2.6c0.42-0.32 1-0.3 1.4 0.05 0.44 0.4 0.48 1.09 0.07 1.53l-1.81 2.06c-1.27 1.47-2.55 2.94-3.95 4.24C13.93 20.43 12.53 21 11 21c-3.31 0-6-2.69-6-6V7c0-0.55 0.45-1 1-1s1 0.45 1 1v5.5C7 12.78 7.22 13 7.5 13S8 12.78 8 12.5V4c0-0.55 0.45-1 1-1s1 0.45 1 1v7.5c0 0.28 0.22 0.5 0.5 0.5s0.5-0.22 0.5-0.5V3Z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
assets/ios/swift/Icons.xcassets/handRaised.imageset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"images":[{"filename":"handRaised.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"preserves-vector-representation":true,"template-rendering-intent":"template"}} |
3 changes: 3 additions & 0 deletions
3
assets/ios/swift/Icons.xcassets/handRaised.imageset/handRaised.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
var _reactJsxRuntime = require("react/jsx-runtime"); | ||
var React = require("react"); | ||
function HandRaisedIcon(props, ref) { | ||
return /*#__PURE__*/_reactJsxRuntime.jsx("svg", { | ||
width: "1em", | ||
height: "1em", | ||
viewBox: "0 0 24 24", | ||
fill: "none", | ||
xmlns: "http://www.w3.org/2000/svg", | ||
ref: ref, | ||
...props, | ||
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", { | ||
d: "M11 3C11 2.44772 11.4477 2 12 2C12.5523 2 13 2.44772 13 3V11.5C13 11.7761 13.2239 12 13.5 12C13.7761 12 14 11.7761 14 11.5V4C14 3.44772 14.4477 3 15 3C15.5523 3 16 3.44772 16 4V14.1993L19.284 11.6032C19.6975 11.2763 20.2865 11.2952 20.6782 11.6479C21.1238 12.0491 21.1579 12.7361 20.7543 13.1795C20.1413 13.8528 19.5396 14.5475 18.9362 15.2441C17.6692 16.7068 16.3947 18.1782 14.9925 19.4789C13.9319 20.425 12.5331 21 11 21C7.68629 21 5 18.3137 5 15V7C5 6.44772 5.44772 6 6 6C6.55228 6 7 6.44772 7 7V12.5C7 12.7761 7.22386 13 7.5 13C7.77614 13 8 12.7761 8 12.5V4C8 3.44772 8.44772 3 9 3C9.55228 3 10 3.44772 10 4V11.5C10 11.7761 10.2239 12 10.5 12C10.7761 12 11 11.7761 11 11.5V3Z", | ||
fill: "#1B1D22" | ||
}) | ||
}); | ||
} | ||
; | ||
HandRaisedIcon.displayName = "HandRaisedIcon"; | ||
module.exports = React.forwardRef(HandRaisedIcon); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from "react"; | ||
|
||
/** | ||
* hand-raised.svg | ||
*/ | ||
declare const HandRaisedIcon: React.ForwardRefExoticComponent< | ||
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> & | ||
React.RefAttributes<SVGSVGElement> | ||
>; | ||
|
||
export default HandRaisedIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { forwardRef } from "react"; | ||
import { jsx as _jsx } from "react/jsx-runtime"; | ||
function HandRaisedIcon(props, ref) { | ||
return /*#__PURE__*/_jsx("svg", { | ||
width: "1em", | ||
height: "1em", | ||
viewBox: "0 0 24 24", | ||
fill: "none", | ||
xmlns: "http://www.w3.org/2000/svg", | ||
ref: ref, | ||
...props, | ||
children: /*#__PURE__*/_jsx("path", { | ||
d: "M11 3C11 2.44772 11.4477 2 12 2C12.5523 2 13 2.44772 13 3V11.5C13 11.7761 13.2239 12 13.5 12C13.7761 12 14 11.7761 14 11.5V4C14 3.44772 14.4477 3 15 3C15.5523 3 16 3.44772 16 4V14.1993L19.284 11.6032C19.6975 11.2763 20.2865 11.2952 20.6782 11.6479C21.1238 12.0491 21.1579 12.7361 20.7543 13.1795C20.1413 13.8528 19.5396 14.5475 18.9362 15.2441C17.6692 16.7068 16.3947 18.1782 14.9925 19.4789C13.9319 20.425 12.5331 21 11 21C7.68629 21 5 18.3137 5 15V7C5 6.44772 5.44772 6 6 6C6.55228 6 7 6.44772 7 7V12.5C7 12.7761 7.22386 13 7.5 13C7.77614 13 8 12.7761 8 12.5V4C8 3.44772 8.44772 3 9 3C9.55228 3 10 3.44772 10 4V11.5C10 11.7761 10.2239 12 10.5 12C10.7761 12 11 11.7761 11 11.5V3Z", | ||
fill: "#1B1D22" | ||
}) | ||
}); | ||
} | ||
; | ||
HandRaisedIcon.displayName = "HandRaisedIcon"; | ||
export default forwardRef(HandRaisedIcon); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.