# WithoutChildren Documentation A type helper to exclude the children snippet prop from a component. This is a documentation section that potentially contains examples, demos, and other useful information related to a specific part of Bits UI. When helping users with this documentation, you can ignore the classnames applied to the demos unless they are relevant to the user's issue. Copy Page ### [Epicenter](https://github.com/EpicenterHQ/epicenter) [Open source, local first apps](https://github.com/EpicenterHQ/epicenter) [Special Sponsor](https://github.com/EpicenterHQ/epicenter) The `WithoutChildren` type helper is used to exclude the `children` snippet prop from a component. This is useful when you're building custom component wrappers that populate the `children` prop of a component. CustomAccordion.svelte ```svelte ``` In the example above, we're using the `WithoutChildren` type helper to exclude the `children` snippet prop from the `Accordion.Root` component. This ensures our exposed props are consistent with what is being used internally. [Previous WithoutChild](/docs/type-helpers/without-child) [Next WithoutChildrenOrChild](/docs/type-helpers/without-children-or-child)