Label(
[
Icon('search'),
Input(type: 'search', placeholder: 'Search', style: [Flex.grow]),
Kbd([text('⌘')], style: [Kbd.sm]),
Kbd([text('K')], style: [Kbd.sm]),
],
type: LabelContainerType.input,
style: [Layout.flex, Alignment.itemsCenter, Layout.gap(2)],
),
Label(
[
Icon('description'),
Input(placeholder: 'index.php', style: [Flex.grow]),
],
type: LabelContainerType.input,
style: [Layout.flex, Alignment.itemsCenter, Layout.gap(2)],
),
Label(
[
FormLabel([text('Path')], tag: 'span'),
Input(placeholder: 'src/app/', style: [Flex.grow]),
Badge([text('Optional')], style: [Badge.neutral, Badge.xs]),
],
type: LabelContainerType.input,
style: [Layout.flex, Alignment.itemsCenter, Layout.gap(2)],
)