mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-12 22:46:58 +03:00
34 lines
497 B
TypeScript
34 lines
497 B
TypeScript
// language=CSS
|
|
export const styles = `
|
|
.pdk-partial-button {
|
|
text-align: center;
|
|
}
|
|
|
|
.pdk-partial-button--with-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.pdk-partial-button--loading {
|
|
}
|
|
|
|
.pdk-partial-button--disabled {
|
|
}
|
|
|
|
.pdk-partial-button__icon {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.pdk-partial-button__icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.pdk-partial-button__icon svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
`;
|