### Create Styled Button Component with Goober Source: https://goober.rocks Use the `styled` function from Goober to create a React component with scoped CSS. This example demonstrates basic styling, nested selectors, and hover states. ```javascript _import_ { **styled** } _from_ _'goober'_ _const_ **Button** = **styled**(_'button'_)` _border_: 0; _background_: dodgerblue; _span_ { _color_: white; } _&:hover_ { _background_: tomato; _span_ { _color_: black; } } ` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.