UNPKG

146 BTypeScriptView Raw
1export const styledByMediaQuery = (style:string, breakpoint = '768px') => `
2 @media screen and (min-width: ${breakpoint}) {
3 ${style};
4 }
5`;