import React from 'react'; import styled from 'styled-components'; const Wrapper = styled.button` border: none; background-color: #2dc262; position: fixed; z-index: 1; bottom: 20px; right: 100px; width: 60px; height: 60px; border-radius: 50%; color: #fff; `; export default function AddToCollectionBtn(props) { return ( ); } AddToCollectionBtn.defaultProps = { height: 24, width: 24, viewBox: '0 0 24 24', };