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

import { Icon, type IconProps } from './Icon'
export const Email = (props: IconProps) => (
<Icon {...props}>
<path d="M224 48H32a8.00039 8.00039 0 0 0-8 8v136a16.01833 16.01833 0 0 0 16 16h176a16.01833 16.01833 0 0 0 16-16V56a8.00039 8.00039 0 0 0-8-8Zm-96 85.15039L52.57129 64h150.85742ZM98.71094 128l-58.71094 50.96484V77.03516Zm16.585 14.39844L122.666 148.873a8.00052 8.00052 0 0 0 10.668 0l7.37012-6.47461L198.29395 192H57.70605Zm41.99024-14.39844 58.71386-50.96484v101.92968Z" />
</Icon>
)