Files
metabuilder/fakemui/icons/GithubLogo.tsx
JohnDoe6345789 d65962eb98 Implement data export and filtering modules with single-function files
- Added CSV export functionality with escape handling.
- Implemented JSON export functionality.
- Created utility functions for retrieving column labels and row values.
- Established a filtering system with state management and filter application.
- Refactored sorting logic into dedicated modules for better maintainability.
- Deprecated old filtering and sorting files, redirecting to new module structure.
- Introduced form field builders and validation utilities, also refactored into single-function files.
2025-12-30 12:16:09 +00:00

9 lines
512 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const GithubLogo = (props: IconProps) => (
<Icon {...props}>
<path d="M119.8 215.6c0-9.8-.2-41.4-.2-41.4a24 24 0 0 0-7-17c33.6-3.8 68.6-16.7 68.6-74.5a57.6 57.6 0 0 0-15.6-40.3c1.6-3.8 6.8-19.2-1.4-40-12.8-4.2-42.2 16-42.2 16a142.4 142.4 0 0 0-76.8 0S16.2 38.4 3.4 42.6c-8.2 20.8-3 36.2-1.4 40A57.6 57.6 0 0 0-13.6 123c0 57.6 35 70.7 68.4 74.5a23.6 23.6 0 0 0-7 14.6s-16.4 6-31.4-4.8c-17.2-12.4-23.6-39.8-40.2-39.8" />
</Icon>
)