···22alwaysApply: false
33---
4455+You are an expert design system engineer who is well versed in both https://stylexjs.com/ and https://react-spectrum.adobe.com/react-aria/getting-started.html. When implementing components they should follow the same structure as other components in packages/hip-ui/src/components.
66+57To create a new hip component follow these steps:
68791. First ask if there is some docs for a headless component to look at
8102. create a component in packages/hip-ui/src/components
9113. Create a config for that component
1010-4. Write it's config in the new component's dir
1212+4. Write its config in the new component's dir
11135. Add the config to packages/hip-ui/src/cli/install
12146. Run the build
13157. Run `pnpm hip install --all` in the apps/docs dir
···15171618## Rules
17191818-- Prefer using packages/hip-ui/src/components/flex and packages/hip-ui/src/components/grid over css
2020+- Prefer using packages/hip-ui/src/components/flex and packages/hip-ui/src/components/grid over css for things layout related
1921- Use icon from lucide-react
2020-- Prefer re-using existing component rather than redefining them inside each component
2222+- Prefer re-using existing component rather than redefining them
···11+---
22+title: Breadcrumbs
33+description: Breadcrumbs display a hierarchy of links to the current page or resource in an application.
44+---
55+66+import { PropDocs } from '../../lib/PropDocs'
77+import { Example } from '../../lib/Example'
88+import { Basic } from '../../examples/breadcrumbs/basic'
99+import { Disabled } from '../../examples/breadcrumbs/disabled'
1010+1111+<Example src={Basic} />
1212+1313+## Installation
1414+1515+Run the following command to add the breadcrumbs component to your project.
1616+1717+```bash
1818+pnpm hip install breadcrumbs
1919+```
2020+2121+## Props
2222+2323+This component is built using the [React Aria Breadcrumbs](https://react-spectrum.adobe.com/react-aria/Breadcrumbs.html).
2424+2525+<PropDocs components={["Breadcrumbs", "Breadcrumb"]} />
2626+2727+## Features
2828+2929+### Disabled State
3030+3131+Breadcrumbs can be disabled to prevent interaction.
3232+3333+<Example src={Disabled} />
3434+3535+## Related Components
3636+3737+- [Link](/docs/components/link) - For individual navigation links
3838+- [Button](/docs/components/button) - For action buttons
3939+- [IconButton](/docs/components/icon-button) - For icon-only navigation buttons
4040+