UNPKG

vinyl-component-blocks

Version:

Modular, Reusable, and Styled UI Component Library. Stop repeating work, install, call, use, modify.

11 lines (8 loc) 217 B
import styled from "styled-components"; interface SearchWrapperProps { width: string; } export const SearchWrapper = styled.div<SearchWrapperProps>` width: ${pr => pr.width}; display: flex; `;