mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-16 02:35:37 +02:00
✨ feat: Add /home (#111)
This commit is contained in:
12
packages/ui/src/modal/modal-header.tsx
Normal file
12
packages/ui/src/modal/modal-header.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { type PropsOf, Slot, component$ } from '@builder.io/qwik';
|
||||
|
||||
/**
|
||||
* @deprecated This component is deprecated and will be removed in future releases.
|
||||
*/
|
||||
export const HModalHeader = component$((props: PropsOf<'header'>) => {
|
||||
return (
|
||||
<header {...props}>
|
||||
<Slot />
|
||||
</header>
|
||||
);
|
||||
});
|
||||
Reference in New Issue
Block a user