From 914b1774d7f733b18dcd9ff67ef2471416992057 Mon Sep 17 00:00:00 2001 From: "David M." Date: Mon, 20 Apr 2026 11:06:53 +0200 Subject: [PATCH] fix: fixed typo in README about Shadcn components --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 477212bcb..93361fe74 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ See [`components/app/app.tsx`](./components/app/app.tsx) for an example of how t ### Customizing components -Agents UI components, like most Shadcn compopnents, take as many primitive attributes as possible. For example, the [AgentControlBar](/reference/components/shadcn/component/agent-control-bar/page.mdoc) component extends `HTMLAttributes`, so you can pass any props that a div supports. This makes it easy to extend the component with your own styles or functionality. +Agents UI components, like most Shadcn components, take as many primitive attributes as possible. For example, the [AgentControlBar](/reference/components/shadcn/component/agent-control-bar/page.mdoc) component extends `HTMLAttributes`, so you can pass any props that a div supports. This makes it easy to extend the component with your own styles or functionality. You can edit any Agents UI component's source code in the `components/agents-ui` directory. For style changes, we recommend passing in tailwind classes to override the default styles. Take a look at the source code to get a sense of how to override a component's default styles.