mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04: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.
16 lines
474 B
TypeScript
16 lines
474 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const TableCells = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="40" y="40" width="176" height="176" rx="8" />
|
|
<line x1="40" y1="88" x2="216" y2="88" />
|
|
<line x1="40" y1="136" x2="216" y2="136" />
|
|
<line x1="40" y1="184" x2="216" y2="184" />
|
|
<line x1="104" y1="88" x2="104" y2="216" />
|
|
<line x1="168" y1="88" x2="168" y2="216" />
|
|
</Icon>
|
|
)
|
|
|
|
export default TableCells
|