Skip to content

Commit

Permalink
re-compile icon with latest main/dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Feb 12, 2024
1 parent ff9cb1c commit f9787c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/components/icon/__snapshots__/icon.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -7739,11 +7739,11 @@ exports[`EuiIcon props type newChat is rendered 1`] = `
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8 4a.5.5 0 01.5.5V6H10a.5.5 0 010 1H8.5v1.5a.5.5 0 01-1 0V7H6a.5.5 0 010-1h1.5V4.5A.5.5 0 018 4z"
d="M8 4a.5.5 0 0 1 .5.5V6H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V7H6a.5.5 0 0 1 0-1h1.5V4.5A.5.5 0 0 1 8 4Z"
/>
<path
clip-rule="evenodd"
d="M1 4a2.5 2.5 0 012.5-2.5h9A2.5 2.5 0 0115 4v5a2.5 2.5 0 01-2.5 2.5H7.707L4.5 14.707V11.5h-1A2.5 2.5 0 011 9V4zm2.5-1.5A1.5 1.5 0 002 4v5a1.5 1.5 0 001.5 1.5h2v1.793L7.293 10.5H12.5A1.5 1.5 0 0014 9V4a1.5 1.5 0 00-1.5-1.5h-9z"
d="M1 4a2.5 2.5 0 0 1 2.5-2.5h9A2.5 2.5 0 0 1 15 4v5a2.5 2.5 0 0 1-2.5 2.5H7.707L4.5 14.707V11.5h-1A2.5 2.5 0 0 1 1 9V4Zm2.5-1.5A1.5 1.5 0 0 0 2 4v5a1.5 1.5 0 0 0 1.5 1.5h2v1.793L7.293 10.5H12.5A1.5 1.5 0 0 0 14 9V4a1.5 1.5 0 0 0-1.5-1.5h-9Z"
fill-rule="evenodd"
/>
</svg>
Expand Down
11 changes: 5 additions & 6 deletions src/components/icon/assets/new_chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,31 @@
// 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 EuiIconNewChat = ({
title,
titleId,
...props
}: React.SVGProps<SVGSVGElement> & SVGRProps) => (
}: SVGProps<SVGSVGElement> & SVGRProps) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
aria-labelledby={titleId}
{...props}
>
{title ? <title id={titleId}>{title}</title> : null}
<path d="M8 4a.5.5 0 01.5.5V6H10a.5.5 0 010 1H8.5v1.5a.5.5 0 01-1 0V7H6a.5.5 0 010-1h1.5V4.5A.5.5 0 018 4z" />
<path d="M8 4a.5.5 0 0 1 .5.5V6H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V7H6a.5.5 0 0 1 0-1h1.5V4.5A.5.5 0 0 1 8 4Z" />
<path
fillRule="evenodd"
d="M1 4a2.5 2.5 0 0 1 2.5-2.5h9A2.5 2.5 0 0 1 15 4v5a2.5 2.5 0 0 1-2.5 2.5H7.707L4.5 14.707V11.5h-1A2.5 2.5 0 0 1 1 9V4Zm2.5-1.5A1.5 1.5 0 0 0 2 4v5a1.5 1.5 0 0 0 1.5 1.5h2v1.793L7.293 10.5H12.5A1.5 1.5 0 0 0 14 9V4a1.5 1.5 0 0 0-1.5-1.5h-9Z"
clipRule="evenodd"
d="M1 4a2.5 2.5 0 012.5-2.5h9A2.5 2.5 0 0115 4v5a2.5 2.5 0 01-2.5 2.5H7.707L4.5 14.707V11.5h-1A2.5 2.5 0 011 9V4zm2.5-1.5A1.5 1.5 0 002 4v5a1.5 1.5 0 001.5 1.5h2v1.793L7.293 10.5H12.5A1.5 1.5 0 0014 9V4a1.5 1.5 0 00-1.5-1.5h-9z"
/>
</svg>
);

export const icon = EuiIconNewChat;

0 comments on commit f9787c8

Please sign in to comment.