# Editor.Properties
> The document-properties bar at the top - name, page size, orientation. Three composable sub-primitives.
Source: https://docs.docmosaic.com/docs/primitives/properties
`Editor.Properties` is the document-properties bar. Document name, page size dropdown, orientation toggle - all wired to the editor context.
## Usage
```tsx
```
## Composition
The default mount renders all three sub-primitives in a row. Use them individually for custom layouts:
```tsx
```
Each sub-primitive is also exported individually and can be dropped anywhere underneath `Editor.Root`.
## Examples
### Just the name
```tsx
```
### Custom page-size set
`PageSizeSelect` accepts a `sizes` prop to filter the options surface. Useful when your product targets a specific format (e.g. US letter sizes only).
```tsx
```
## API Reference
## Related
- [DocumentName](/docs/primitives/document-name)
- [PageSizeSelect](/docs/primitives/page-size-select)
- [OrientationSelect](/docs/primitives/orientation-select)