UNPKG

sliceit

Version:

A CLI tool to generate React components with custom templates (JS, JSX, TSX, CSS, SCSS, Styled Components)

13 lines (10 loc) 297 B
export const generateStyleTemplate = (name, style) => { if (style === "styled") { return `import styled from 'styled-components'; export const Wrapper = styled.div\` /* Add your styles here */ \`; `; } return `.${name.toLowerCase()} {\n \n}`; };