mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-28 07:44: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
552 B
TypeScript
16 lines
552 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Buildings = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="32" y="56" width="80" height="168" rx="8" />
|
|
<rect x="144" y="96" width="80" height="128" rx="8" />
|
|
<line x1="112" y1="104" x2="144" y2="104" />
|
|
<line x1="56" y1="88" x2="88" y2="88" />
|
|
<line x1="56" y1="120" x2="88" y2="120" />
|
|
<line x1="56" y1="152" x2="88" y2="152" />
|
|
<line x1="168" y1="128" x2="200" y2="128" />
|
|
<line x1="168" y1="160" x2="200" y2="160" />
|
|
</Icon>
|
|
)
|