fix: Reduce loading jank on recent searches screen
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import styled from "styled-components";
|
||||
|
||||
const Button = styled.button.attrs((type) => ({ type: type || "button" }))<{
|
||||
const Button = styled.button.attrs((props) => ({
|
||||
type: props.type || "button",
|
||||
}))<{
|
||||
width?: number;
|
||||
height?: number;
|
||||
size?: number;
|
||||
|
||||
Reference in New Issue
Block a user