Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add raised-hand-solid icon. #118

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions assets/android/res/drawable/ic_compound_hand_raised.xml

This file was deleted.

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>
10 changes: 5 additions & 5 deletions assets/android/src/CompoundIcons.kt
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,6 @@ object CompoundIcons {
@Composable fun Grid(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_grid)
}
@Composable fun HandRaised(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_hand_raised)
}
@Composable fun Help(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_help)
}
Expand Down Expand Up @@ -399,6 +396,9 @@ object CompoundIcons {
@Composable fun Quote(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_quote)
}
@Composable fun RaisedHandSolid(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_raised_hand_solid)
}
@Composable fun Reaction(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_reaction)
}
Expand Down Expand Up @@ -617,7 +617,6 @@ object CompoundIcons {
Filter(),
Forward(),
Grid(),
HandRaised(),
Help(),
HelpSolid(),
History(),
Expand Down Expand Up @@ -682,6 +681,7 @@ object CompoundIcons {
Public(),
QrCode(),
Quote(),
RaisedHandSolid(),
Reaction(),
ReactionAdd(),
Reply(),
Expand Down Expand Up @@ -795,7 +795,6 @@ object CompoundIcons {
R.drawable.ic_compound_filter,
R.drawable.ic_compound_forward,
R.drawable.ic_compound_grid,
R.drawable.ic_compound_hand_raised,
R.drawable.ic_compound_help,
R.drawable.ic_compound_help_solid,
R.drawable.ic_compound_history,
Expand Down Expand Up @@ -860,6 +859,7 @@ object CompoundIcons {
R.drawable.ic_compound_public,
R.drawable.ic_compound_qr_code,
R.drawable.ic_compound_quote,
R.drawable.ic_compound_raised_hand_solid,
R.drawable.ic_compound_reaction,
R.drawable.ic_compound_reaction_add,
R.drawable.ic_compound_reply,
Expand Down
2 changes: 1 addition & 1 deletion assets/ios/swift/CompoundIcons.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public class CompoundIcons {
public let filter = Image("filter", bundle: Bundle.module)
public let forward = Image("forward", bundle: Bundle.module)
public let grid = Image("grid", bundle: Bundle.module)
public let handRaised = Image("handRaised", bundle: Bundle.module)
public let helpSolid = Image("helpSolid", bundle: Bundle.module)
public let help = Image("help", bundle: Bundle.module)
public let history = Image("history", bundle: Bundle.module)
Expand Down Expand Up @@ -128,6 +127,7 @@ public class CompoundIcons {
public let `public` = Image("public", bundle: Bundle.module)
public let qrCode = Image("qrCode", bundle: Bundle.module)
public let quote = Image("quote", bundle: Bundle.module)
public let raisedHandSolid = Image("raisedHandSolid", bundle: Bundle.module)
public let reactionAdd = Image("reactionAdd", bundle: Bundle.module)
public let reaction = Image("reaction", bundle: Bundle.module)
public let reply = Image("reply", bundle: Bundle.module)
Expand Down

This file was deleted.

This file was deleted.

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"}}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 0 additions & 19 deletions assets/web/icons/hand-raised.cjs

This file was deleted.

19 changes: 0 additions & 19 deletions assets/web/icons/hand-raised.js

This file was deleted.

2 changes: 1 addition & 1 deletion assets/web/icons/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ module.exports = {
FilterIcon: require("./filter.cjs"),
ForwardIcon: require("./forward.cjs"),
GridIcon: require("./grid.cjs"),
HandRaisedIcon: require("./hand-raised.cjs"),
HelpSolidIcon: require("./help-solid.cjs"),
HelpIcon: require("./help.cjs"),
HistoryIcon: require("./history.cjs"),
Expand Down Expand Up @@ -121,6 +120,7 @@ module.exports = {
PublicIcon: require("./public.cjs"),
QrCodeIcon: require("./qr-code.cjs"),
QuoteIcon: require("./quote.cjs"),
RaisedHandSolidIcon: require("./raised-hand-solid.cjs"),
ReactionAddIcon: require("./reaction-add.cjs"),
ReactionIcon: require("./reaction.cjs"),
ReplyIcon: require("./reply.cjs"),
Expand Down
2 changes: 1 addition & 1 deletion assets/web/icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export { default as FilesIcon } from "./files.js";
export { default as FilterIcon } from "./filter.js";
export { default as ForwardIcon } from "./forward.js";
export { default as GridIcon } from "./grid.js";
export { default as HandRaisedIcon } from "./hand-raised.js";
export { default as HelpSolidIcon } from "./help-solid.js";
export { default as HelpIcon } from "./help.js";
export { default as HistoryIcon } from "./history.js";
Expand Down Expand Up @@ -120,6 +119,7 @@ export { default as PreferencesIcon } from "./preferences.js";
export { default as PublicIcon } from "./public.js";
export { default as QrCodeIcon } from "./qr-code.js";
export { default as QuoteIcon } from "./quote.js";
export { default as RaisedHandSolidIcon } from "./raised-hand-solid.js";
export { default as ReactionAddIcon } from "./reaction-add.js";
export { default as ReactionIcon } from "./reaction.js";
export { default as ReplyIcon } from "./reply.js";
Expand Down
2 changes: 1 addition & 1 deletion assets/web/icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export { default as FilesIcon } from "./files.js";
export { default as FilterIcon } from "./filter.js";
export { default as ForwardIcon } from "./forward.js";
export { default as GridIcon } from "./grid.js";
export { default as HandRaisedIcon } from "./hand-raised.js";
export { default as HelpSolidIcon } from "./help-solid.js";
export { default as HelpIcon } from "./help.js";
export { default as HistoryIcon } from "./history.js";
Expand Down Expand Up @@ -120,6 +119,7 @@ export { default as PreferencesIcon } from "./preferences.js";
export { default as PublicIcon } from "./public.js";
export { default as QrCodeIcon } from "./qr-code.js";
export { default as QuoteIcon } from "./quote.js";
export { default as RaisedHandSolidIcon } from "./raised-hand-solid.js";
export { default as ReactionAddIcon } from "./reaction-add.js";
export { default as ReactionIcon } from "./reaction.js";
export { default as ReplyIcon } from "./reply.js";
Expand Down
19 changes: 19 additions & 0 deletions assets/web/icons/raised-hand-solid.cjs
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);
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;
19 changes: 19 additions & 0 deletions assets/web/icons/raised-hand-solid.js
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);
2 changes: 1 addition & 1 deletion assets/web/js/cpdDark.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles : string;
export const cpdIconFilter : string;
export const cpdIconForward : string;
export const cpdIconGrid : string;
export const cpdIconHandRaised : string;
export const cpdIconHelpSolid : string;
export const cpdIconHelp : string;
export const cpdIconHistory : string;
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences : string;
export const cpdIconPublic : string;
export const cpdIconQrCode : string;
export const cpdIconQuote : string;
export const cpdIconRaisedHandSolid : string;
export const cpdIconReactionAdd : string;
export const cpdIconReaction : string;
export const cpdIconReply : string;
Expand Down
2 changes: 1 addition & 1 deletion assets/web/js/cpdDark.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles = "icons/files.svg";
export const cpdIconFilter = "icons/filter.svg";
export const cpdIconForward = "icons/forward.svg";
export const cpdIconGrid = "icons/grid.svg";
export const cpdIconHandRaised = "icons/hand-raised.svg";
export const cpdIconHelpSolid = "icons/help-solid.svg";
export const cpdIconHelp = "icons/help.svg";
export const cpdIconHistory = "icons/history.svg";
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences = "icons/preferences.svg";
export const cpdIconPublic = "icons/public.svg";
export const cpdIconQrCode = "icons/qr-code.svg";
export const cpdIconQuote = "icons/quote.svg";
export const cpdIconRaisedHandSolid = "icons/raised-hand-solid.svg";
export const cpdIconReactionAdd = "icons/reaction-add.svg";
export const cpdIconReaction = "icons/reaction.svg";
export const cpdIconReply = "icons/reply.svg";
Expand Down
2 changes: 1 addition & 1 deletion assets/web/js/cpdDarkHc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles : string;
export const cpdIconFilter : string;
export const cpdIconForward : string;
export const cpdIconGrid : string;
export const cpdIconHandRaised : string;
export const cpdIconHelpSolid : string;
export const cpdIconHelp : string;
export const cpdIconHistory : string;
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences : string;
export const cpdIconPublic : string;
export const cpdIconQrCode : string;
export const cpdIconQuote : string;
export const cpdIconRaisedHandSolid : string;
export const cpdIconReactionAdd : string;
export const cpdIconReaction : string;
export const cpdIconReply : string;
Expand Down
2 changes: 1 addition & 1 deletion assets/web/js/cpdDarkHc.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles = "icons/files.svg";
export const cpdIconFilter = "icons/filter.svg";
export const cpdIconForward = "icons/forward.svg";
export const cpdIconGrid = "icons/grid.svg";
export const cpdIconHandRaised = "icons/hand-raised.svg";
export const cpdIconHelpSolid = "icons/help-solid.svg";
export const cpdIconHelp = "icons/help.svg";
export const cpdIconHistory = "icons/history.svg";
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences = "icons/preferences.svg";
export const cpdIconPublic = "icons/public.svg";
export const cpdIconQrCode = "icons/qr-code.svg";
export const cpdIconQuote = "icons/quote.svg";
export const cpdIconRaisedHandSolid = "icons/raised-hand-solid.svg";
export const cpdIconReactionAdd = "icons/reaction-add.svg";
export const cpdIconReaction = "icons/reaction.svg";
export const cpdIconReply = "icons/reply.svg";
Expand Down
2 changes: 1 addition & 1 deletion assets/web/js/cpdLight.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles : string;
export const cpdIconFilter : string;
export const cpdIconForward : string;
export const cpdIconGrid : string;
export const cpdIconHandRaised : string;
export const cpdIconHelpSolid : string;
export const cpdIconHelp : string;
export const cpdIconHistory : string;
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences : string;
export const cpdIconPublic : string;
export const cpdIconQrCode : string;
export const cpdIconQuote : string;
export const cpdIconRaisedHandSolid : string;
export const cpdIconReactionAdd : string;
export const cpdIconReaction : string;
export const cpdIconReply : string;
Expand Down
2 changes: 1 addition & 1 deletion assets/web/js/cpdLight.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles = "icons/files.svg";
export const cpdIconFilter = "icons/filter.svg";
export const cpdIconForward = "icons/forward.svg";
export const cpdIconGrid = "icons/grid.svg";
export const cpdIconHandRaised = "icons/hand-raised.svg";
export const cpdIconHelpSolid = "icons/help-solid.svg";
export const cpdIconHelp = "icons/help.svg";
export const cpdIconHistory = "icons/history.svg";
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences = "icons/preferences.svg";
export const cpdIconPublic = "icons/public.svg";
export const cpdIconQrCode = "icons/qr-code.svg";
export const cpdIconQuote = "icons/quote.svg";
export const cpdIconRaisedHandSolid = "icons/raised-hand-solid.svg";
export const cpdIconReactionAdd = "icons/reaction-add.svg";
export const cpdIconReaction = "icons/reaction.svg";
export const cpdIconReply = "icons/reply.svg";
Expand Down
2 changes: 1 addition & 1 deletion assets/web/js/cpdLightHc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles : string;
export const cpdIconFilter : string;
export const cpdIconForward : string;
export const cpdIconGrid : string;
export const cpdIconHandRaised : string;
export const cpdIconHelpSolid : string;
export const cpdIconHelp : string;
export const cpdIconHistory : string;
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences : string;
export const cpdIconPublic : string;
export const cpdIconQrCode : string;
export const cpdIconQuote : string;
export const cpdIconRaisedHandSolid : string;
export const cpdIconReactionAdd : string;
export const cpdIconReaction : string;
export const cpdIconReply : string;
Expand Down
2 changes: 1 addition & 1 deletion assets/web/js/cpdLightHc.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const cpdIconFiles = "icons/files.svg";
export const cpdIconFilter = "icons/filter.svg";
export const cpdIconForward = "icons/forward.svg";
export const cpdIconGrid = "icons/grid.svg";
export const cpdIconHandRaised = "icons/hand-raised.svg";
export const cpdIconHelpSolid = "icons/help-solid.svg";
export const cpdIconHelp = "icons/help.svg";
export const cpdIconHistory = "icons/history.svg";
Expand Down Expand Up @@ -199,6 +198,7 @@ export const cpdIconPreferences = "icons/preferences.svg";
export const cpdIconPublic = "icons/public.svg";
export const cpdIconQrCode = "icons/qr-code.svg";
export const cpdIconQuote = "icons/quote.svg";
export const cpdIconRaisedHandSolid = "icons/raised-hand-solid.svg";
export const cpdIconReactionAdd = "icons/reaction-add.svg";
export const cpdIconReaction = "icons/reaction.svg";
export const cpdIconReply = "icons/reply.svg";
Expand Down
Loading