diff --git a/src/sections/Projects/Sistent/components/select/guidance.js b/src/sections/Projects/Sistent/components/select/guidance.js
new file mode 100644
index 000000000000..763c841dd183
--- /dev/null
+++ b/src/sections/Projects/Sistent/components/select/guidance.js
@@ -0,0 +1,241 @@
+import React from "react";
+import { Row } from "../../../../../reusecore/Layout";
+import { SistentThemeProvider } from "@layer5/sistent";
+import { SistentLayout } from "../../sistent-layout";
+import {
+ FormHelperText,
+ FormControl,
+ InputLabel,
+ Select,
+ MenuItem,
+ Grid,
+ ListSubheader,
+ OutlinedInput,
+} from "@mui/material";
+import { useStyledDarkMode } from "../../../../../theme/app/useStyledDarkMode";
+import SectionNav from "./section-nav";
+import Header from "./header";
+const SelectGuidance = () => {
+ const { isDark } = useStyledDarkMode();
+ const [selectedAge, setSelectedAge] = React.useState("");
+ const [multipleAges, setMultipleAges] = React.useState([]);
+ const handleMultiplSelect = (event) => {
+ let agesList = event.target.value;
+ setMultipleAges(agesList);
+ };
+ return (
+
+ The select component can exhibit different behaviors based on the
+ context and user input. Since it is usually used within a form
+ component, these behaviors can act in response to the user input for
+ other components in the form.
+
+ If the component is disabled, the dropdown menu won't display when
+ user clicks on the selection area. This behavior is useful when the
+ user is not allowed to select any option.
+
+ This behavior is used to indicate that the user has made an error or
+ the selection is not compatible with other form components.
+
+ If specified, the select component will be required to have an input
+ from the user. An asterisk will be displayed next to the label to
+ let the user know that the input is required.
+
+ Additional props can be added to the select component to customize
+ its label and dropdown menu to provide use with more context of
+ their selection.
+
+ The label is optional. If provided, helper text is displayed below
+ the component to give the user more context about the component.
+
+ Placeholder can be used to give more context about the selection.
+
+ If the selection options are organized into groups, their groups can
+ be displayed within the dropdown menu to assist users in making
+ their selection.
+
+ The multiple select component allows users to select more than one
+ option from the dropdown list. This is useful in scenarios where
+ multiple selections are required, such as selecting multiple tags,
+ categories, or items.
+ Behavior
+
+ Disabled
+ Error
+ Required
+ Customization
+
+ Label and helper text
+ Placeholder
+ Grouping
+ Multiple select
+
+
Filled select feature a background color fill. Depending on the @@ -81,9 +73,8 @@ const SistentSelect = () => { brand color to any other applicable color in a brand's color palette.
- -
The standard style features a simple underline below the selection
@@ -121,48 +112,6 @@ const SistentSelect = () => {
-
- Label and helper text
-
-
- The label is optional. If provided, helper text is displayed below - the component to give the user more context about the component. -
- -- The multiple select component allows users to select more than one - option from the dropdown list. This is useful in scenarios where - multiple selections are required, such as selecting multiple tags, - categories, or items. -
+Multiple select component allows users to select more than one.