Cookie banner

Customised cookie consent for your website. Design your own banner here! Protect personal data.
import React from 'react';
import SvgIcon from '../../../src/components/icons/SvgIcon';
import { Button } from 'seduo-ui';

const Example = () => (
    <div className="fixed-bottom">
        <div className="container pb-6 d-flex justify-content-center">
            <div className="d-flex align-items-center justify-content-center bg-white pl-6 pr-7 py-5 rounded shadow">
                <div className="d-flex align-items-center">
                    <SvgIcon kind="Cookie" className="icon icon-muted mb-3" />
                    <small className="ml-6">
                        Customised cookie consent for your website. Design your own banner here! Protect personal data.
                    </small>
                </div>
                <Button color="primary" size="sm" className="ml-7">
                    Agree
                </Button>
            </div>
        </div>
    </div>
);

export default Example;