From 563ed81984f477591d861ba2cb997d0e28e58e98 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 28 Dec 2022 16:07:22 -0500 Subject: [PATCH] remove example --- docs/resources/contributing.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/resources/contributing.md b/docs/resources/contributing.md index 72f8feefc..18a768e52 100644 --- a/docs/resources/contributing.md +++ b/docs/resources/contributing.md @@ -188,8 +188,6 @@ Please do not make any changes to `prettier.config.cjs` without consulting the m Components should be composable, meaning you can easily reuse them with and within other components. This reduces the overall size of the library, expedites feature development, and maintains a consistent user experience. -The `` component, for example, makes use of the dropdown, input, menu, and menu item components. Because it's offloading most of its functionality and styles to lower-level components, the select component remains lightweight and its appearance is consistent with other form controls and menus. - ### Component Structure All components have a host element, which is a reference to the `` element itself. Make sure to always set the host element's `display` property to the appropriate value depending on your needs, as the default is `inline` per the custom element spec.