Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

styled component typescript

//in styled component with param define type of param
const StyledComponent = styled.div`
        background: black;
        color: white;
    `;

    const StyledComponentWithParams = styled.div<{ color?: string }>`
        background: yellow;
        color: ${(color) => (color ? "yellow" : "white")};
    `;

    const StyledComponentDefaultValueParams = styled.div<{ color?: string }>`
        background: yellow;
        color: ${(color = "white") => (color)};
    `;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #styled #component #typescript
ADD COMMENT
Topic
Name
8+4 =