Answers for "styled components with component"

22

styled-components

npm install --save styled-components

# yarn 
yarn add styled-components
Posted by: Guest on July-24-2020
-1

styled components tw

const Button = tw.div`
    ${(p) => (p.$primary ? "bg-indigo-600" : "bg-indigo-300")}

    flex
    inline-flex
    items-center
    border
    border-transparent
    text-xs
    font-medium
    rounded
    shadow-sm
    text-white

    hover:bg-indigo-700
    focus:outline-none
`
Posted by: Guest on December-11-2021

Code answers related to "styled components with component"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language