This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/@emotion/styled/src/index.js
2024-09-18 13:34:19 -03:00

12 lines
240 B
JavaScript

import styled from './base'
import { tags } from './tags'
// bind it to avoid mutating the original function
const newStyled = styled.bind()
tags.forEach(tagName => {
newStyled[tagName] = newStyled(tagName)
})
export default newStyled