mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-09 23:10:20 +08:00
- Removed the ICON_IMPLEMENTATION_GUIDE.md file and several unused SVG icons from the `icons/` directory. - Added new SVG icons to enhance the icon library, including various brand logos. - Updated package.json to reflect the new version of the `tsx` dependency. - Introduced a script for generating icons and improved the structure of the icons module for better organization and accessibility. - Updated the stories for icons to showcase the new additions and ensure proper documentation.
14 lines
600 B
TypeScript
14 lines
600 B
TypeScript
import type { SVGProps } from 'react'
|
|
const Exa = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg width="1em" height="1em" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M4 1H21V2.64175L13.7455 12L21 21.3582V23H4V1ZM12.6074 10.4857L18.5028 2.64175H6.71105L12.6074 10.4857ZM5.91295 4.60708V11.1796H10.8519L5.91295 4.60708ZM10.8519 12.8204H5.91295V19.3929L10.8519 12.8204ZM6.71105 21.3592L12.6074 13.5153L18.5028 21.3592H6.71105Z"
|
|
fill="#1F40ED"
|
|
/>
|
|
</svg>
|
|
)
|
|
export { Exa }
|
|
export default Exa
|