-
Notifications
You must be signed in to change notification settings - Fork 894
[EuiIcon] Index glyph #7498
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
[EuiIcon] Index glyph #7498
Changes from 2 commits
b7fa025
1cefc00
ed152df
eac6afb
06ac1d0
267c45a
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 @@ | ||
| - Added index icon | ||
|
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. Adding here as a quick note - |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| /* | ||
| * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
| * or more contributor license agreements. Licensed under the Elastic License | ||
| * 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
| * in compliance with, at your election, the Elastic License 2.0 or the Server | ||
| * Side Public License, v 1. | ||
| */ | ||
|
|
||
| // THIS IS A GENERATED FILE. DO NOT MODIFY MANUALLY. @see scripts/compile-icons.js | ||
|
|
||
| import * as React from 'react'; | ||
| import type { SVGProps } from 'react'; | ||
| interface SVGRProps { | ||
| title?: string; | ||
| titleId?: string; | ||
| } | ||
| const EuiIconIndex = ({ | ||
| title, | ||
| titleId, | ||
| ...props | ||
| }: SVGProps<SVGSVGElement> & SVGRProps) => ( | ||
| <svg | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| width={17} | ||
| height={16} | ||
| viewBox="0 0 17 16" | ||
| aria-labelledby={titleId} | ||
| {...props} | ||
| > | ||
| {title ? <title id={titleId}>{title}</title> : null} | ||
| <path d="M13.063 2.5h-10v11h11v1h-12v-13h12v12h-1v-11Zm-7 3h5.999v-1h-6v1Zm-2 0v-1h1v1h-1Zm2 3v-1h6v1h-6Zm-2 0v-1h1v1h-1Zm2 3v-1h6v1h-6Zm-2 0v-1h1v1h-1Z" /> | ||
| </svg> | ||
| ); | ||
| export const icon = EuiIconIndex; |
Uh oh!
There was an error while loading. Please reload this page.