mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-02 01:34:56 +00:00
- 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.
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ChatCircle = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M128 24a104 104 0 0 0-91.2 153.8L24 224l46.2-12.8A104 104 0 1 0 128 24Z" />
|
|
</Icon>
|
|
)
|