-
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.
(Replaces hand-raised with our standard export process).
- Loading branch information
Showing
27 changed files
with
75 additions
and
75 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
assets/android/res/drawable/ic_compound_raised_hand_solid.xml
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="#FF000000" | ||
android:pathData="M11 3a1 1 0 1 1 2 0v8.5a0.5 0.5 0 0 0 1 0V4a1 1 0 1 1 2 0v10.2l3.28-2.6a1.08 1.08 0 0 1 1.47 1.58l-1.81 2.06c-1.27 1.47-2.55 2.94-3.95 4.24A6 6 0 0 1 5 15V7a1 1 0 0 1 2 0v5.5a0.5 0.5 0 0 0 1 0V4a1 1 0 0 1 2 0v7.5a0.5 0.5 0 0 0 1 0V3Z"/> | ||
</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: 0 additions & 1 deletion
1
assets/ios/swift/Icons.xcassets/handRaised.imageset/Contents.json
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
assets/ios/swift/Icons.xcassets/handRaised.imageset/handRaised.svg
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
assets/ios/swift/Icons.xcassets/raisedHandSolid.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":"raisedHandSolid.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/raisedHandSolid.imageset/raisedHandSolid.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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
var _reactJsxRuntime = require("react/jsx-runtime"); | ||
var React = require("react"); | ||
function RaisedHandSolidIcon(props, ref) { | ||
return /*#__PURE__*/_reactJsxRuntime.jsx("svg", { | ||
xmlns: "http://www.w3.org/2000/svg", | ||
width: "1em", | ||
height: "1em", | ||
fill: "currentColor", | ||
viewBox: "0 0 24 24", | ||
ref: ref, | ||
...props, | ||
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", { | ||
d: "M11 3a1 1 0 1 1 2 0v8.5a.5.5 0 0 0 1 0V4a1 1 0 1 1 2 0v10.2l3.284-2.597a1.081 1.081 0 0 1 1.47 1.577c-.613.673-1.214 1.367-1.818 2.064-1.267 1.463-2.541 2.934-3.944 4.235A6 6 0 0 1 5 15V7a1 1 0 0 1 2 0v5.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 2 0v7.5a.5.5 0 0 0 1 0V3Z" | ||
}) | ||
}); | ||
} | ||
; | ||
RaisedHandSolidIcon.displayName = "RaisedHandSolidIcon"; | ||
module.exports = React.forwardRef(RaisedHandSolidIcon); |
6 changes: 3 additions & 3 deletions
6
assets/web/icons/hand-raised.d.ts → assets/web/icons/raised-hand-solid.d.ts
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import React from "react"; | ||
|
||
/** | ||
* hand-raised.svg | ||
* raised-hand-solid.svg | ||
*/ | ||
declare const HandRaisedIcon: React.ForwardRefExoticComponent< | ||
declare const RaisedHandSolidIcon: React.ForwardRefExoticComponent< | ||
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> & | ||
React.RefAttributes<SVGSVGElement> | ||
>; | ||
|
||
export default HandRaisedIcon; | ||
export default RaisedHandSolidIcon; |
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,19 @@ | ||
import { forwardRef } from "react"; | ||
import { jsx as _jsx } from "react/jsx-runtime"; | ||
function RaisedHandSolidIcon(props, ref) { | ||
return /*#__PURE__*/_jsx("svg", { | ||
xmlns: "http://www.w3.org/2000/svg", | ||
width: "1em", | ||
height: "1em", | ||
fill: "currentColor", | ||
viewBox: "0 0 24 24", | ||
ref: ref, | ||
...props, | ||
children: /*#__PURE__*/_jsx("path", { | ||
d: "M11 3a1 1 0 1 1 2 0v8.5a.5.5 0 0 0 1 0V4a1 1 0 1 1 2 0v10.2l3.284-2.597a1.081 1.081 0 0 1 1.47 1.577c-.613.673-1.214 1.367-1.818 2.064-1.267 1.463-2.541 2.934-3.944 4.235A6 6 0 0 1 5 15V7a1 1 0 0 1 2 0v5.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 2 0v7.5a.5.5 0 0 0 1 0V3Z" | ||
}) | ||
}); | ||
} | ||
; | ||
RaisedHandSolidIcon.displayName = "RaisedHandSolidIcon"; | ||
export default forwardRef(RaisedHandSolidIcon); |
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.