+ My section example content
+
+ }
+/>
+
+### Actions
+
+You can add actions to the section header by using the `actions` prop which can accept any component.
+
+```jsx live
+Explore Insights}
+ title={
+ Unlock the Power of Your Data
+ }
+>
+
+ Discover actionable insights hidden within your data. With our advanced
+ tools and intuitive dashboards, transform raw numbers into meaningful
+ strategies that drive success.
+
+
+```
+
+### Controlled
+
+You can control the state of `HvSection` by using the `expanded / onToggle` props.
+
+```tsx live
+import { useState } from "react";
+
+export default function Demo() {
+ const [expanded, setExpanded] = useState(false);
+
+ return (
+
+ setExpanded((p) => !p)}>
+ Expand
+
+ setExpanded((p) => !p)}
+ >
+
+ This section is controlled by the state of the parent component.
+
+
+
+ );
+}
+```
+
+