UNPKG

polestar-ui-kit

Version:

## Install

26 lines (20 loc) 647 B
Breadcrumb component example: [Ant Breadcrumb API](https://ant.design/components/breadcrumb/) ```jsx static import React from 'react'; import { Breadcrumb } from 'polestar-ui-kit'; const breadcrumbItems = [ { label: 'Home', path: '/', icon: 'home' }, { label: '대카테고리', link: 'http://nkia.co.kr' }, { label: '중카테고리', path: '/layout1' }, { label: '소카테고리', path: '/elements', icon: 'hdd-2' }, ]; class MyComponent extends React.Component { render() { return ( <Breadcrumb items={breadcrumbItems} /> ); } } export default MyComponent; ```