UNPKG

strapi-plugin-users-permissions

Version:

Protect your API with a full-authentication process based on JWT

14 lines (11 loc) 259 B
/* eslint-disable indent */ import styled from 'styled-components'; const ConditionsButtonWrapper = styled.div` padding: 0.9rem; ${({ hasConditions }) => hasConditions && ` padding-left: 22px; `} `; export default ConditionsButtonWrapper;