Files
metabuilder/fakemui/icons/FolderOutlined.tsx
JohnDoe6345789 d1d02cc237 refactor: split Lua modules into 1-function-per-file pattern
- ui_level2/profile.lua → profile/ (render, save_profile)
- ui_level3/layout.lua → layout/ (render, stats, tabs + existing)
- ui_home/navigate.lua → navigate/ (to_level2, to_level3, open_docs)
- ui_level5/transfer.lua → transfer/ (initiate, confirm, assign_god)
- ui_login/actions.lua → actions/ (handle_login, handle_register)
- ui_login/validate.lua → validate/ (login, register)
- ui_auth/gate.lua → gate/ (check, wrap)

All modules include types.lua and init.lua facade for backward compatibility
2025-12-30 12:44:44 +00:00

8 lines
440 B
TypeScript

import { Icon, type IconProps } from './Icon'
export const FolderOutlined = (props: IconProps) => (
<Icon {...props}>
<path d="M216 72h-84.68652L104.24316 48.97656A15.94758 15.94758 0 0 0 92.68652 44H40a16.01833 16.01833 0 0 0-16 16v140.61621A15.3932 15.3932 0 0 0 39.38379 216H216.88916A15.11326 15.11326 0 0 0 232 200.88867V88a16.01833 16.01833 0 0 0-16-16ZM92.68652 60l27.07227 24H40V60Zm123.31348 140H40V100h176Z" />
</Icon>
)