Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/FilteredSearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ The FilteredSearch component helps style a Dropdown and a TextInput side-by-side
<ActionMenu>
<ActionMenu.Button as="summary">Filter</ActionMenu.Button>
<ActionMenu.Overlay>
<ActionList direction="sw">
<ActionList>
<ActionList.Item>Item 1</ActionList.Item>
<ActionList.Item>Item 2</ActionList.Item>
<ActionList.Item>Item 3</ActionList.Item>
</ActionList>
</ActionMenu.Overlay>
</ActionMenu>
<TextInput icon={SearchIcon} />
<TextInput leadingVisual={SearchIcon} />
</FilteredSearch>
```

Expand Down
1 change: 0 additions & 1 deletion src/FilteredSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const FilteredSearch = styled.div<SxProp>`
border-radius: 0;
border-top-right-radius: ${get('radii.2')};
border-bottom-right-radius: ${get('radii.2')};
z-index: 1; // Allows the focus outline to show on top of the dropdown.
}

${sx}
Expand Down