mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
updating more names in small components
This commit is contained in:
parent
078ec20aaf
commit
7b5eb32d00
@ -20,5 +20,5 @@ module.exports = styled.label`
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
color: ${colors.brandSecondaryColor};
|
||||
color: ${colors.base.secondary};
|
||||
`;
|
||||
|
@ -16,11 +16,11 @@ const {
|
||||
} = Styled;
|
||||
|
||||
const colorWithDisabled = (props) => props.disabled
|
||||
? colors.brandInactiveColor
|
||||
? colors.inactive.default
|
||||
: colors.fonts.regular;
|
||||
|
||||
const colorWithDefaultValue = (props) => props.value === props.defaultValue
|
||||
? colors.brandInactiveColor
|
||||
? colors.inactive.default
|
||||
: colorWithDisabled(props);
|
||||
|
||||
const color = (props) => props.defaultValue
|
||||
@ -46,7 +46,7 @@ module.exports = css`
|
||||
padding: ${paddingTop} ${remcalc(18)};
|
||||
|
||||
border-radius: ${boxes.borderRadius};
|
||||
background-color: ${colors.brandPrimaryColor};
|
||||
background-color: ${colors.base.primary};
|
||||
box-shadow: ${boxes.insetShaddow};
|
||||
border: ${boxes.border.unchecked};
|
||||
|
||||
@ -61,7 +61,7 @@ module.exports = css`
|
||||
outline: 0;
|
||||
|
||||
&:focus {
|
||||
border-color: ${colors.brandPrimary};
|
||||
border-color: ${colors.base.primary};
|
||||
outline: 0;
|
||||
}
|
||||
`;
|
||||
|
@ -8,19 +8,21 @@ const {
|
||||
|
||||
const styles = css`
|
||||
font-size: inherit;
|
||||
|
||||
${props => props.style}
|
||||
`;
|
||||
|
||||
const Icon = ({
|
||||
name = 'beer',
|
||||
className,
|
||||
iconSet = 'fa',
|
||||
style
|
||||
style = '',
|
||||
}) => {
|
||||
const Icon = require(`react-icons/lib/${iconSet}/${name}`);
|
||||
const Component = styled(Icon)(styles);
|
||||
|
||||
return (
|
||||
<Component className={className} style={style} />
|
||||
<Component className={className} />
|
||||
);
|
||||
};
|
||||
|
||||
@ -28,7 +30,7 @@ Icon.propTypes = {
|
||||
className: React.PropTypes.string,
|
||||
iconSet: React.PropTypes.string.isRequired,
|
||||
name: React.PropTypes.string.isRequired,
|
||||
style: React.PropTypes.object
|
||||
style: React.PropTypes.string,
|
||||
};
|
||||
|
||||
module.exports = Icon;
|
||||
|
@ -1,3 +0,0 @@
|
||||
.icon {
|
||||
font-size: inherit;
|
||||
}
|
Loading…
Reference in New Issue
Block a user