mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-06 17:11:55 +00:00
Add eslint.
This commit is contained in:
@@ -3,7 +3,7 @@ import styled, { css } from "styled-components";
|
||||
interface Props {
|
||||
readonly contrast?: boolean;
|
||||
readonly error?: boolean;
|
||||
};
|
||||
}
|
||||
|
||||
export default styled.button<Props>`
|
||||
z-index: 1;
|
||||
|
||||
@@ -102,10 +102,10 @@ export default function ColourSwatches({ value, onChange }: Props) {
|
||||
onChange={ev => onChange(ev.currentTarget.value)}
|
||||
/>
|
||||
<Rows>
|
||||
{presets.map(row => (
|
||||
<div>
|
||||
{ row.map(swatch => (
|
||||
<Swatch colour={swatch} type='small'
|
||||
{presets.map((row, i) => (
|
||||
<div key={i}>
|
||||
{ row.map((swatch, i) => (
|
||||
<Swatch colour={swatch} type='small' key={i}
|
||||
onClick={() => onChange(swatch)}>
|
||||
{swatch === value && <Check size={18} strokeWidth={2} />}
|
||||
</Swatch>
|
||||
|
||||
@@ -2,7 +2,7 @@ import styled, { css } from "styled-components";
|
||||
|
||||
interface Props {
|
||||
readonly contrast?: boolean;
|
||||
};
|
||||
}
|
||||
|
||||
export default styled.input<Props>`
|
||||
z-index: 1;
|
||||
|
||||
Reference in New Issue
Block a user