Files
metabuilder/fakemui/icons/UserSwitch.tsx
JohnDoe6345789 2b79f3b094 feat: split data_table Lua modules into single-function files
- 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
2025-12-30 12:17:50 +00:00

14 lines
407 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const UserSwitch = (props: IconProps) => (
<Icon {...props}>
<circle cx="128" cy="96" r="56" />
<path d="M200 200H56c8-25.6 38.4-48 72-48s64 22.4 72 48" />
<polyline points="200 128 224 152 200 176" />
<polyline points="56 128 32 104 56 80" />
<path d="M224 152h-40" />
<path d="M72 104H32" />
</Icon>
)