databag/net/web/src/session/channels/Channels.jsx

17 lines
419 B
React
Raw Normal View History

2022-08-08 06:30:34 +00:00
import { Input } from 'antd';
import { ChannelsWrapper } from './Channels.styled';
import { SearchOutlined } from '@ant-design/icons';
2022-08-05 22:06:53 +00:00
export function Channels() {
2022-08-08 06:30:34 +00:00
return (
<ChannelsWrapper>
<div class="search">
<div class="filter">
<Input bordered={false} allowClear={true} placeholder="Channels" prefix={<SearchOutlined />} />
</div>
</div>
</ChannelsWrapper>
);
2022-08-05 22:06:53 +00:00
}