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

fix(icons): renamed *-help and *-question icons to *-question-mark #2540

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

jguddas
Copy link
Member

@jguddas jguddas commented Oct 17, 2024

  • fix(icons): renamed *-help icons
  • fix(icons): renamed *-question icons

closes #2539

What is the purpose of this pull request?

  • New Icon
  • Bug fix
  • New Feature
  • Documentation update
  • Other: guideline fix

Description

Icon use case

Before Submitting

@github-actions github-actions bot added 🎨 icon About new icons 🫧 metadata Improved metadata labels Oct 17, 2024
Copy link

Added or changed icons

icons/badge-question-mark.svgicons/circle-question-mark.svgicons/file-question-mark.svgicons/mail-question-mark.svgicons/message-circle-question-mark.svgicons/shield-question-mark.svg

Preview cohesion icons/square-arrow-left.svgicons/square-radical.svgicons/square-dashed-bottom-code.svgicons/message-square.svgicons/message-square-lock.svgicons/square-parking-off.svg
icons/badge-question-mark.svgicons/circle-question-mark.svgicons/file-question-mark.svgicons/mail-question-mark.svgicons/message-circle-question-mark.svgicons/shield-question-mark.svg
icons/signal-low.svgicons/ticket-x.svgicons/message-square-text.svgicons/chart-column-big.svgicons/spray-can.svgicons/settings.svg
Preview stroke widths icons/badge-question-mark.svgicons/circle-question-mark.svgicons/file-question-mark.svgicons/mail-question-mark.svgicons/message-circle-question-mark.svgicons/shield-question-mark.svg
icons/badge-question-mark.svgicons/circle-question-mark.svgicons/file-question-mark.svgicons/mail-question-mark.svgicons/message-circle-question-mark.svgicons/shield-question-mark.svg
icons/badge-question-mark.svgicons/circle-question-mark.svgicons/file-question-mark.svgicons/mail-question-mark.svgicons/message-circle-question-mark.svgicons/shield-question-mark.svg
DPI Preview (24px) icons/badge-question-mark.svg icons/circle-question-mark.svg icons/file-question-mark.svg icons/mail-question-mark.svg icons/message-circle-question-mark.svg icons/shield-question-mark.svg
Icon X-rays icons/badge-question-mark.svg icons/circle-question-mark.svg icons/file-question-mark.svg icons/mail-question-mark.svg icons/message-circle-question-mark.svg icons/shield-question-mark.svg
Icon Diffs icons/badge-question-mark.svg icons/circle-question-mark.svg icons/file-question-mark.svg icons/mail-question-mark.svg icons/message-circle-question-mark.svg icons/shield-question-mark.svg
Icons as code

Works for: lucide-react, lucide-react-native, lucide-preact, lucide-vue-next

const BadgeQuestionMarkIcon = createLucideIcon('BadgeQuestionMark', [
  ["path",{"d":"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],
  ["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],
  ["line",{"x1":"12","x2":"12.01","y1":"17","y2":"17"}]
])

const CircleQuestionMarkIcon = createLucideIcon('CircleQuestionMark', [
  ["circle",{"cx":"12","cy":"12","r":"10"}],
  ["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],
  ["path",{"d":"M12 17h.01"}]
])

const FileQuestionMarkIcon = createLucideIcon('FileQuestionMark', [
  ["path",{"d":"M12 17h.01"}],
  ["path",{"d":"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],
  ["path",{"d":"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}]
])

const MailQuestionMarkIcon = createLucideIcon('MailQuestionMark', [
  ["path",{"d":"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],
  ["path",{"d":"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],
  ["path",{"d":"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],
  ["path",{"d":"M20 22v.01"}]
])

const MessageCircleQuestionMarkIcon = createLucideIcon('MessageCircleQuestionMark', [
  ["path",{"d":"M7.9 20A9 9 0 1 0 4 16.1L2 22Z"}],
  ["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],
  ["path",{"d":"M12 17h.01"}]
])

const ShieldQuestionMarkIcon = createLucideIcon('ShieldQuestionMark', [
  ["path",{"d":"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"}],
  ["path",{"d":"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}],
  ["path",{"d":"M12 17h.01"}]
])

@jguddas jguddas changed the title fix/icons renamed help icons fix(icons): renamed *-help and *-question icons to *-question-mark Oct 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🎨 icon About new icons 🫧 metadata Improved metadata
Projects
None yet
Development

Successfully merging this pull request may close these issues.

rename circle-help and badge-help to circle-question and badge-question
2 participants