---
group: Internal
---

```tsx
export type MyComponentProps = {} & PublicBaseProps;

export function MyComponent(props: MyComponentProps) {
  return (
    <Base
      as="span"
      {...props}
      __internalStyles={{
        // theme-aware styles
        color: 'text.success',
      }}
    />
  );
}
```
