Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Type
/
to search
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.2k
Code
Issues
218
Pull requests
186
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Files
Expand file tree
feast-dataframe-phase2
Breadcrumbs
feast
/
ui
/
src
/
graphics
/
EntityIcon.tsx
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
25 lines (23 loc) · 1.35 KB
feast-dataframe-phase2
Breadcrumbs
feast
/
ui
/
src
/
graphics
/
EntityIcon.tsx
Copy path
Top
File metadata and controls
Code
Blame
25 lines (23 loc) · 1.35 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React from "react";
const EntityIcon = (props: React.SVGProps<SVGSVGElement>) => {
return (
<svg
{...props}
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.0383 5.04579C9.99584 5.04579 5.09743 9.9442 5.09743 15.9867C5.09743 21.5208 9.20619 26.0952 14.5396 26.8258V21.5321H17.5371C17.5469 22.3595 17.5371 29.946 17.5371 29.946C17.0447 29.9982 16.5446 30.025 16.0383 30.025C8.28518 30.025 2 23.7399 2 15.9867C2 8.23354 8.28518 1.94836 16.0383 1.94836C23.7915 1.94836 30.0767 8.23354 30.0767 15.9867C30.0767 22.0929 26.1782 27.2885 20.7344 29.2203C20.6845 29.0259 20.6967 26.2271 20.7344 25.8713C24.427 24.1139 26.9792 20.3484 26.9792 15.9867C26.9792 9.9442 22.0808 5.04579 16.0383 5.04579Z"
fill="#0569EA"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M16.0383 11.4405C13.5275 11.4405 11.4921 13.4759 11.4921 15.9867C11.4921 18.4975 13.5275 20.5329 16.0383 20.5329C18.5491 20.5329 20.5846 18.4975 20.5846 15.9867C20.5846 13.4759 18.5491 11.4405 16.0383 11.4405ZM8.39468 15.9867C8.39468 11.7653 11.8169 8.34308 16.0383 8.34308C20.2598 8.34308 23.682 11.7653 23.682 15.9867C23.682 20.2082 20.2598 23.6304 16.0383 23.6304C11.8169 23.6304 8.39468 20.2082 8.39468 15.9867Z"
fill="#0569EA"
/>
</svg>
);
};
export { EntityIcon };
You can’t perform that action at this time.