mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
- selection.lua: 11 functions -> 14 files (selection/) - export.lua: 9 functions -> 11 files (export/) - filtering.lua: 7 functions -> 9 files (filtering/) - sorting.lua: 5 functions -> 7 files (sorting/) - admin_dialog/user.lua: 2 functions -> user/ directory - form_builder: updated redirects to existing subdirs - Added 12 new fakemui icons for data tables: SortAscending, SortDescending, ColumnResize, RowSelect, SelectAll, TableCells, Csv, Json, FilterClear, Columns, Rows, Pagination All modules follow 1-function-per-file pattern with LuaLS type annotations
14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ArrowsOutCardinal = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="88 56 128 16 168 56" />
|
|
<polyline points="88 200 128 240 168 200" />
|
|
<polyline points="56 168 16 128 56 88" />
|
|
<polyline points="200 168 240 128 200 88" />
|
|
<line x1="128" y1="16" x2="128" y2="240" />
|
|
<line x1="16" y1="128" x2="240" y2="128" />
|
|
</Icon>
|
|
)
|