mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 08:12:00 +02:00

* build/refactor: move lint/prettier packages to project root, install husky, add pre-commit hook * refactor: reformat files * build: put full eslintrc back with all rules
12 lines
546 B
JavaScript
12 lines
546 B
JavaScript
import React from 'react';
|
|
|
|
export default function BingChatIcon() {
|
|
return (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" fill="none">
|
|
<path
|
|
fill="#174AE4"
|
|
d="M8 0a8 8 0 1 1-3.613 15.14l-.121-.065-3.645.91a.5.5 0 0 1-.62-.441v-.082l.014-.083.91-3.644-.063-.12a7.95 7.95 0 0 1-.83-2.887l-.025-.382L0 8a8 8 0 0 1 8-8Zm.5 9h-3l-.09.008a.5.5 0 0 0 0 .984L5.5 10h3l.09-.008a.5.5 0 0 0 0-.984L8.5 9Zm2-3h-5l-.09.008a.5.5 0 0 0 0 .984L5.5 7h5l.09-.008a.5.5 0 0 0 0-.984L10.5 6Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|