import React from 'react'; import { Container, ScrollViewType } from 'components/layout'; import { TextField } from 'components/text-field'; import { SearchIcon } from 'icons'; export const Search: React.FC = ({ width = 341, placeholder = 'Search spaces, messages, people, and more...', }) => { return ( } backgroundVariant="base" placeholder={placeholder} /> ); }; type SearchType = ScrollViewType & SearchProps; export interface SearchProps { width?: number; placeholder?: string; }