mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Replace icons in dashboard and settings * Replace icons in alerting * Update batch of icons * Implement icons accross various files * Style updates * Search: Fix recent and starred icons * Update styling and details * Replace new icon created by unicons * Fix e2e test, styling * Minor styling updates Co-authored-by: Clarity-89 <homes89@ukr.net>
18 lines
409 B
TypeScript
18 lines
409 B
TypeScript
import React, { FunctionComponent } from 'react';
|
|
import { SvgProps } from './types';
|
|
|
|
export const Circle: FunctionComponent<SvgProps> = ({ size, ...rest }) => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
enableBackground="new 0 0 24 24"
|
|
viewBox="0 0 24 24"
|
|
width={size}
|
|
height={size}
|
|
{...rest}
|
|
>
|
|
<circle cx="12" cy="12" r="10" />
|
|
</svg>
|
|
);
|
|
};
|