.root {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 50%;
	color: inherit;
}

/* need to scale icon because we want it to be 50% of the size of the feature icon */

.icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Shape */

.shape-circle {
	border-radius: var(--component-radii-pill);
}

.shape-square {
	border-radius: var(--component-radii-lg);
}
