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 metrics/24 icon #51

Merged
merged 1 commit into from
Oct 4, 2023
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
1 change: 1 addition & 0 deletions icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ export type Icon =
| { name: 'logs', size: 16 }
| { name: 'logs', size: 24 }
| { name: 'metrics', size: 16 }
| { name: 'metrics', size: 24 }
| { name: 'more', size: 12 }
| { name: 'networking', size: 16 }
| { name: 'networking', size: 24 }
Expand Down
18 changes: 18 additions & 0 deletions icons/react/Metrics24Icon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* Copyright Oxide Computer Company
*/
import { SVGProps } from "react";
interface SVGRProps {
title?: string;
titleId?: string;
}
const Metrics24Icon = ({
title,
titleId,
...props
}: SVGProps<SVGSVGElement> & SVGRProps) => <svg width={24} height={24} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fillRule="evenodd" clipRule="evenodd" d="M13 10a1 1 0 0 0 1 1h7c.552 0 1.006-.45.945-.998a9.004 9.004 0 0 0-7.947-7.947C13.45 1.995 13 2.448 13 3v7ZM2 13c0-4.633 3.5-8.449 8.002-8.945.549-.06.998.393.998.945v7a1 1 0 0 0 1 1h7c.552 0 1.006.45.945.998A9.001 9.001 0 0 1 2 13Z" fill="currentColor" /></svg>;
export default Metrics24Icon;
1 change: 1 addition & 0 deletions icons/react/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export { default as Like24Icon } from './Like24Icon.tsx';
export { default as LoadBalancer24Icon } from './LoadBalancer24Icon.tsx';
export { default as Location24Icon } from './Location24Icon.tsx';
export { default as Logs24Icon } from './Logs24Icon.tsx';
export { default as Metrics24Icon } from './Metrics24Icon.tsx';
export { default as Networking24Icon } from './Networking24Icon.tsx';
export { default as Organization24Icon } from './Organization24Icon.tsx';
export { default as Overview24Icon } from './Overview24Icon.tsx';
Expand Down
2 changes: 1 addition & 1 deletion icons/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/svg/metrics-24.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading