mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +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
12 lines
392 B
TypeScript
12 lines
392 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ArrowsClockwise = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="176 168 224 168 224 216" />
|
|
<polyline points="80 88 32 88 32 40" />
|
|
<path d="M195.9 60.1a96 96 0 0 1 0 135.8l-28.1 28.1" fill="none" />
|
|
<path d="M60.1 195.9a96 96 0 0 1 0-135.8l28.1-28.1" fill="none" />
|
|
</Icon>
|
|
)
|