A Babel macro for filbert, converts styled.div
syntax to styled('div')
calls.
npm install --save @filbert-js/macro
1import React from 'react';2import { styled } from '@filbert-js/macro';34const Button = styled.button`5 margin: 0;6 padding: 1rem;7 font-size: 1rem;8 background-color: tomato;9`;