styled-components-snippets

Snippets for styled-components https://www.styled-components.com/

jonkwheeler

3,692

1

0.13.0

MIT

GitHub

Styled-Components Snippets for Atom

Download the Atom package here. - https://atom.io/packages/styled-components-snippets

View the Styled-Components documentation here.

I'll add to this over time. Submit PR's if you like. Tag me on them.

Snippets so far

Imports

Prefix Output
imsc import styled from 'styled-components';
imscn import styled from 'styled-components/native';
imscg import { createGlobalStyle } from 'styled-components';
imsccss import { css } from 'styled-components';
imsct import { withTheme } from 'styled-components';

Creation

Prefix Example Output / Description
sc const ${1} = styled.${2} / Styled-Component
exsc export const ${1} = styled.${2} / Export styled-component
scc const ${1} = styled(${2}) / Styled-Component from existing component
exscc export const ${1} = styled(${2}) / Export styled-component from existing component
scg const Global${1} = createGlobalStyle / Styled-Component
exscg export const Global${1} = createGlobalStyle / Export styled-component
scf Add both 'imsc' and 'sc' to a new styles.js file
scattrs const ${1} = styled.${2}.attrs({ ${3}: ${4} })${5} / Styled-Component with attributes
exscattrs export const ${1} = styled.${2}.attrs({ ${3}: ${4} })${5} / Export styled-component with attributes

Props

Prefix Example Output / Description
scp ${props => props.${1}}; / Use props inside styled-component
scpd ${({ ${1} }) => ${2}}; / Use props inside styled-component (destructured)
scpt ${({ theme }) => theme.${1}}; / Use props.theme inside styled-component

Misc

Prefix Example Output / Description
ThemeProvider <ThemeProvider theme={${1}}> ${2} </ThemeProvider>
sct const theme = { ${1}: '${2}' } / Create styled-component theme object
The MIT License

Copyright (c) 2019 @jonkwheeler

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.