code: tsx,icons,fakemui (2 files)

This commit is contained in:
Richard Ward
2025-12-30 12:33:31 +00:00
parent 9c6dddc5ee
commit e0fc403371
2 changed files with 19 additions and 0 deletions

9
fakemui/icons/Tab.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { Icon, IconProps } from './Icon'
export const Tab = (props: IconProps) => (
<Icon {...props}>
<rect x="3" y="3" width="18" height="18" rx="2" />
<path d="M3 9h18" />
<path d="M9 3v6" />
</Icon>
)

10
fakemui/icons/Tabs.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { Icon, IconProps } from './Icon'
export const Tabs = (props: IconProps) => (
<Icon {...props}>
<rect x="3" y="3" width="18" height="18" rx="2" />
<path d="M3 9h18" />
<path d="M9 3v6" />
<path d="M15 3v6" />
</Icon>
)