nicecode-v2/packages/icon-v2/src/icons/Ai.tsx
2024-07-22 09:51:31 +08:00

18 lines
1.0 KiB
TypeScript

import React from 'react';
import { CustomSVGProps } from '../type';
import '../index.less';
const Ai = (props: CustomSVGProps) => (
<span className={'icon'}>
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M1.81 8.5a1.5 1.5 0 0 1 1.025 2.595l.016-.015a6.002 6.002 0 0 0 10.86-1.235.5.5 0 1 1 .951.308 7.002 7.002 0 0 1-12.73 1.341l-.122.006-.144-.007A1.5 1.5 0 0 1 1.81 8.5ZM10.5 5a.5.5 0 0 1 .5.5v5a.5.5 0 1 1-1 0v-5a.5.5 0 0 1 .5-.5Zm-3.536.314 2 5a.5.5 0 1 1-.928.372L7.56 9.5H5.438l-.474 1.186a.5.5 0 0 1-.563.304l-.087-.026a.5.5 0 0 1-.278-.65l2-5a.5.5 0 0 1 .928 0ZM1.81 9.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM6.5 6.846 5.838 8.5h1.323L6.5 6.846ZM8 1a7.003 7.003 0 0 1 6.067 3.505l.123-.005.144.007a1.5 1.5 0 1 1-1.17.398l-.015.015A6.002 6.002 0 0 0 2.29 6.154a.5.5 0 0 1-.951-.308A7.002 7.002 0 0 1 8 1Zm6.19 4.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z"
/>
</svg>
</span>
);
export default Ai;