-
Notifications
You must be signed in to change notification settings - Fork 361
feat: add LinesWithMagnifyingGlass icon BED-9144 #3182
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
base: main
Are you sure you want to change the base?
Changes from all commits
9b2bab5
73e05cd
fba2a19
2d7671c
264a1d6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| // Copyright 2026 Specter Ops, Inc. | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
| // | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import React from 'react'; | ||
| import { BasePath, BaseSVG, BaseSVGProps } from './utils'; | ||
|
|
||
| export const LinesWithMagnifyingGlass: React.FC<BaseSVGProps> = (props) => { | ||
| return ( | ||
| <BaseSVG | ||
| name='lines-with-magnifying-class' | ||
| width='16' | ||
| height='10' | ||
| viewBox='0 0 16 10' | ||
| fill='none' | ||
| xmlns='http://www.w3.org/2000/svg' | ||
| {...props}> | ||
|
Comment on lines
+22
to
+29
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win Preserve the
🤖 Prompt for AI Agents |
||
| <BasePath d='M4 2.30769H0V0.769231H4V2.30769ZM4 4.61538H0V6.15385H4V4.61538ZM14.872 10L11.808 7.05385C11.168 7.45385 10.416 7.69231 9.6 7.69231C7.392 7.69231 5.6 5.96923 5.6 3.84615C5.6 1.72308 7.392 0 9.6 0C11.808 0 13.6 1.72308 13.6 3.84615C13.6 4.63077 13.352 5.35385 12.936 5.96154L16 8.91539L14.872 10ZM12 3.84615C12 2.57692 10.92 1.53846 9.6 1.53846C8.28 1.53846 7.2 2.57692 7.2 3.84615C7.2 5.11538 8.28 6.15385 9.6 6.15385C10.92 6.15385 12 5.11538 12 3.84615ZM0 10H8V8.46154H0V10Z' /> | ||
| </BaseSVG> | ||
| ); | ||
| }; | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Correct the icon name.
BaseSVGrendersapp-icon-${name}in a visually hidden label. The current value producesapp-icon-lines-with-magnifying-class. Uselines-with-magnifying-glass.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents