diff --git a/apps/web/src/components/Design/SelectDesign.tsx b/apps/web/src/components/Design/SelectDesign.tsx new file mode 100644 index 00000000000..7f79ae0b2ab --- /dev/null +++ b/apps/web/src/components/Design/SelectDesign.tsx @@ -0,0 +1,64 @@ +import { Card, CardHeader, Select } from "@hey/ui"; +import type { FC } from "react"; + +const SelectDesign: FC = () => { + const options = [ + { + htmlLabel: "Simple Label", + label: "Simple Label", + value: "simple-label", + selected: true + }, + { htmlLabel: HTML Label, label: "HTML Label", value: "html-label" } + ]; + + const optionsWithIcon = [ + { + label: "Option 1", + value: "1", + icon: "https://hey-assets.b-cdn.net/images/app-icon/0.png", + selected: true + }, + { + label: "Option 2", + value: "2", + icon: "https://hey-assets.b-cdn.net/images/app-icon/2.png" + }, + { + label: "Option 3", + value: "3", + icon: "https://hey-assets.b-cdn.net/images/app-icon/3.png" + }, + { + label: "Option 4", + value: "4", + icon: "https://hey-assets.b-cdn.net/images/app-icon/4.png" + } + ]; + + return ( + + +
+
+
Simple Select
+ {}} options={options} showSearch /> +
+
+
Select with Icon
+