Last active
December 8, 2020 02:39
-
-
Save phobal/bb2ac89c2e5cff1e631c4862087b78a4 to your computer and use it in GitHub Desktop.
在 styled-components 中使用 TS 示例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import styled from 'styled-components' | |
| export const Wrapper = styled.div<{ paddingLeft?: number }>` | |
| padding: 28px 20px 0 | |
| ${(props) => (props?.paddingLeft === 0 ? 0 : props?.paddingLeft || 32)}px; | |
| min-height: 500px; | |
| box-shadow: 0px 2px 4px 0px rgba(110, 122, 125, 0.3); | |
| border-radius: 2px; | |
| ` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment