import { Button} from 'react-bootstrap';
import React from "react";
import styled from "styled-components";
export const ButtonComponent = (props) => {
return (
<CustomButton variant="primary" type="submit">
Submit
</CustomButton>
)
};
const CustomButton = styled(Button)`
// Стили, которые хотим переназначить
`;