Here is Breadcrumb component
import React from 'react'; import { Breadcrumb } from 'antd'; const App: React.FC = () => ( <Breadcrumb items={[ { title: 'Users', }, { title: ':id', href: '', }, ]} params={{ id: 1 }} /> ); export default App;
Part of Ant Design — browse the full library on 21st.dev.