Skip to content

Instantly share code, notes, and snippets.

@phobal
Last active December 8, 2020 02:39
Show Gist options
  • Select an option

  • Save phobal/bb2ac89c2e5cff1e631c4862087b78a4 to your computer and use it in GitHub Desktop.

Select an option

Save phobal/bb2ac89c2e5cff1e631c4862087b78a4 to your computer and use it in GitHub Desktop.
在 styled-components 中使用 TS 示例
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