Files
metabuilder/fakemui/icons/DescriptionOutlined.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
554 B
TypeScript

import { Icon, type IconProps } from './Icon'
export const DescriptionOutlined = (props: IconProps) => (
<Icon {...props}>
<path d="M213.65723 82.34326l-56-56A8.00235 8.00235 0 0 0 152 24H56a16.01833 16.01833 0 0 0-16 16v176a16.01833 16.01833 0 0 0 16 16h144a16.01833 16.01833 0 0 0 16-16V88a8.00235 8.00235 0 0 0-2.34277-5.65674ZM200 216H56V40h92.686L200 91.314ZM88 112a8 8 0 0 1 8-8h64a8 8 0 0 1 0 16H96a8 8 0 0 1-8-8Zm0 32a8 8 0 0 1 8-8h64a8 8 0 0 1 0 16H96a8 8 0 0 1-8-8Zm0 32a8 8 0 0 1 8-8h64a8 8 0 0 1 0 16H96a8 8 0 0 1-8-8Z" />
</Icon>
)