Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Icon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ export { default as NotificationBell } from "./svg/NotificationBell"
export { default as NotificationOffBell } from "./svg/NotificationOffBell"
export { default as NoTraining } from "./svg/NoTraining"
export { default as Number } from "./svg/Number"
export { default as Object } from "./svg/Object"
export { default as Object } from "./svg/ObjectIcon"
export { default as On } from "./svg/On"
export { default as OpenaiLogoBold } from "./svg/OpenaiLogoBold"
export { default as OpenaiLogoBoldBoundingBox } from "./svg/OpenaiLogoBoldBoundingBox"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { SVGProps } from "react"
const Object = (props: SVGProps<SVGSVGElement>) => (
const ObjectIcon = (props: SVGProps<SVGSVGElement>) => (
<svg width="1em" height="1em" viewBox="0 0 24 24" fill="currentColor" {...props}>
<path d="M4 16.688c0-.597.018-1.028.01-1.515-.008-.456-.04-.815-.117-1.108-.074-.28-.182-.479-.333-.636-.155-.16-.408-.334-.858-.475a1 1 0 0 1 0-1.908c.469-.147.73-.326.886-.488.153-.16.258-.358.328-.636.073-.292.1-.65.104-1.104 0-.224-.004-.458-.01-.713-.004-.25-.01-.518-.01-.793C4 5.147 5.853 3.5 8 3.5a1 1 0 0 1 0 2c-1.166 0-2 .871-2 1.813 0 .249.005.495.01.75.006.251.011.512.01.768-.004.505-.033 1.05-.165 1.576a3.34 3.34 0 0 1-.825 1.536c-.02.022-.044.042-.066.063L5 12.04c.438.455.687.983.827 1.519.137.522.174 1.067.183 1.579.008.48-.01 1.078-.01 1.549 0 .94.834 1.812 2 1.812a1 1 0 1 1 0 2c-2.147 0-4-1.647-4-3.813Zm14 0c0-.254-.006-.504-.012-.761a30.663 30.663 0 0 1-.01-.77c0-.505.026-1.051.157-1.576a3.28 3.28 0 0 1 .83-1.532l.05-.049-.05-.049a3.285 3.285 0 0 1-.83-1.532c-.13-.525-.156-1.07-.158-1.576 0-.256.006-.517.011-.77.006-.257.012-.507.012-.76 0-.942-.834-1.813-2-1.813a1 1 0 1 1 0-2c2.147 0 4 1.647 4 3.813 0 .28-.006.553-.012.806-.006.258-.011.494-.01.72 0 .457.027.81.098 1.098.068.27.17.463.322.619.157.16.42.34.9.49a1 1 0 0 1 0 1.908c-.48.15-.743.33-.9.49a1.288 1.288 0 0 0-.322.62c-.071.287-.097.64-.099 1.097 0 .226.005.462.011.72.006.253.012.526.012.806 0 2.166-1.853 3.813-4 3.813a1 1 0 1 1 0-2c1.166 0 2-.871 2-1.813Z" />
</svg>
)
export default Object
export default ObjectIcon